diff options
author | Guenter Roeck <linux@roeck-us.net> | 2024-07-15 07:20:35 -0700 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-07-31 10:43:52 -0700 |
commit | 74b6451beb8b2cda63b19aff680d4517a0955242 (patch) | |
tree | 278b334e07b3d0dfb149903f66d97bf3067c69a4 | |
parent | 34ea1f9867219e2810210dcfe3392a75a74dc6c3 (diff) | |
download | linux-74b6451beb8b2cda63b19aff680d4517a0955242.tar.gz linux-74b6451beb8b2cda63b19aff680d4517a0955242.tar.bz2 linux-74b6451beb8b2cda63b19aff680d4517a0955242.zip |
hwmon: (max1668) Reorder include files to alphabetic order
Reorder include files to alphabetic order to simplify driver maintenance.
Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r-- | drivers/hwmon/max1668.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/hwmon/max1668.c b/drivers/hwmon/max1668.c index 9fc583ebb11b..f5b5cc29da17 100644 --- a/drivers/hwmon/max1668.c +++ b/drivers/hwmon/max1668.c @@ -6,15 +6,15 @@ * some credit to Christoph Scheurer, but largely a rewrite */ -#include <linux/module.h> -#include <linux/init.h> -#include <linux/slab.h> -#include <linux/jiffies.h> -#include <linux/i2c.h> +#include <linux/err.h> #include <linux/hwmon.h> #include <linux/hwmon-sysfs.h> -#include <linux/err.h> +#include <linux/i2c.h> +#include <linux/init.h> +#include <linux/jiffies.h> +#include <linux/module.h> #include <linux/mutex.h> +#include <linux/slab.h> /* Addresses to scan */ static const unsigned short max1668_addr_list[] = { |