diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-04-09 17:45:55 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-04-09 17:04:53 +0200 |
commit | 4fe952c141b285ca0b379c93c9c6c69d7240a495 (patch) | |
tree | 0f618f892b667764f9e4b3ca4841816081b4bb91 | |
parent | 69b2cc30315ac48e3a6308a7f736f67c3e3db0b1 (diff) | |
download | linux-stable-4fe952c141b285ca0b379c93c9c6c69d7240a495.tar.gz linux-stable-4fe952c141b285ca0b379c93c9c6c69d7240a495.tar.bz2 linux-stable-4fe952c141b285ca0b379c93c9c6c69d7240a495.zip |
serial: max3100: Sort headers
Sort the headers in alphabetic order in order to ease
the maintenance for this part.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240409144721.638326-9-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/tty/serial/max3100.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/tty/serial/max3100.c b/drivers/tty/serial/max3100.c index 4e7cd037cfc2..ce24588150bf 100644 --- a/drivers/tty/serial/max3100.c +++ b/drivers/tty/serial/max3100.c @@ -18,18 +18,18 @@ #include <linux/container_of.h> #include <linux/delay.h> -#include <linux/slab.h> #include <linux/device.h> +#include <linux/freezer.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/pm.h> #include <linux/property.h> #include <linux/serial_core.h> #include <linux/serial.h> +#include <linux/slab.h> #include <linux/spi/spi.h> -#include <linux/freezer.h> -#include <linux/tty.h> #include <linux/tty_flip.h> +#include <linux/tty.h> #include <linux/types.h> #include <asm/unaligned.h> |