diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-11-26 00:32:01 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-12-03 16:26:15 +0300 |
commit | d5fb1304acfd9b8077485c9fb1bf94c8218fd899 (patch) | |
tree | 53ff3c26e55336df96b9100b3328b255ff547924 /drivers/misc/eeprom | |
parent | 31a45d27c9328b9c8193f01d7d534659a03cee2d (diff) | |
download | linux-d5fb1304acfd9b8077485c9fb1bf94c8218fd899.tar.xz |
misc: at25: Reorganize headers for better maintenance
Split headers to three groups and sort alphabetically in each of them.
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20211125213203.86693-9-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/eeprom')
-rw-r--r-- | drivers/misc/eeprom/at25.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/misc/eeprom/at25.c b/drivers/misc/eeprom/at25.c index b9d26c9ee768..3e60124d14a3 100644 --- a/drivers/misc/eeprom/at25.c +++ b/drivers/misc/eeprom/at25.c @@ -7,17 +7,18 @@ */ #include <linux/bits.h> -#include <linux/kernel.h> -#include <linux/module.h> -#include <linux/slab.h> #include <linux/delay.h> #include <linux/device.h> +#include <linux/kernel.h> +#include <linux/module.h> +#include <linux/property.h> #include <linux/sched.h> +#include <linux/slab.h> -#include <linux/nvmem-provider.h> -#include <linux/spi/spi.h> #include <linux/spi/eeprom.h> -#include <linux/property.h> +#include <linux/spi/spi.h> + +#include <linux/nvmem-provider.h> /* * NOTE: this is an *EEPROM* driver. The vagaries of product naming |