diff options
author | Guenter Roeck <linux@roeck-us.net> | 2024-07-16 20:57:19 -0700 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-08-27 08:10:22 -0700 |
commit | 82efdeff3ce722c74af7e95b7c8c060e272c4dd0 (patch) | |
tree | 2b198fb2ee0df0926e6f00bb33a1d48e4677d746 /drivers/hwmon | |
parent | 3a3dbff8a71ae7c8c6fbf900864ab79fd001bd29 (diff) |
hwmon: (lm92) Reorder include files to alphabetic order
Simplify driver maintenance by reordering files to alphabetic order.
No functional change.
Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/lm92.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/hwmon/lm92.c b/drivers/hwmon/lm92.c index e2d8c8afcbfa..b0179d72b779 100644 --- a/drivers/hwmon/lm92.c +++ b/drivers/hwmon/lm92.c @@ -27,15 +27,15 @@ * with the LM92. */ -#include <linux/module.h> -#include <linux/init.h> -#include <linux/slab.h> -#include <linux/i2c.h> +#include <linux/err.h> #include <linux/hwmon.h> #include <linux/hwmon-sysfs.h> -#include <linux/err.h> -#include <linux/mutex.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> /* * The LM92 and MAX6635 have 2 two-state pins for address selection, |