diff options
author | Guenter Roeck <linux@roeck-us.net> | 2021-12-22 22:42:38 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2022-02-28 04:03:16 +0300 |
commit | 7c68c2c761d157203b64ebbb61dd7b5b6c32df61 (patch) | |
tree | c293db24e42827758f854854256e23a489d2b0cc /drivers/hwmon/lm83.c | |
parent | 7f3cc8f897634b7e2d79bc2b7105e9ae6eaf4ac2 (diff) | |
download | linux-7c68c2c761d157203b64ebbb61dd7b5b6c32df61.tar.xz |
hwmon: (lm83) Reorder include files to be in alphabetic order
Reorder include files to be in alphabetic order to simplify
driver maintenance.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/lm83.c')
-rw-r--r-- | drivers/hwmon/lm83.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/hwmon/lm83.c b/drivers/hwmon/lm83.c index 74fd7aa373a3..44d720af2473 100644 --- a/drivers/hwmon/lm83.c +++ b/drivers/hwmon/lm83.c @@ -18,15 +18,15 @@ * http://www.national.com/pf/LM/LM82.html */ -#include <linux/module.h> +#include <linux/err.h> +#include <linux/i2c.h> #include <linux/init.h> -#include <linux/slab.h> #include <linux/jiffies.h> -#include <linux/i2c.h> -#include <linux/hwmon-sysfs.h> #include <linux/hwmon.h> -#include <linux/err.h> +#include <linux/hwmon-sysfs.h> +#include <linux/module.h> #include <linux/mutex.h> +#include <linux/slab.h> #include <linux/sysfs.h> /* |