diff options
author | Guenter Roeck <linux@roeck-us.net> | 2016-07-04 06:48:18 -0700 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2016-09-08 21:34:14 -0700 |
commit | 4b2ea08be985cb238ea03f3fd76490de950fd3cc (patch) | |
tree | 0b6efb54306684d2d50689584652ff5ab9c09841 /drivers/hwmon | |
parent | 090a7f8efe0be34e837d51ef27f6232356ecabf6 (diff) |
hwmon: (lm95241) Order include files alphabetically
Simplify detecting duplicate include files and finding the right place
for adding new ones.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/lm95241.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hwmon/lm95241.c b/drivers/hwmon/lm95241.c index e4e7bf169b07..c2da2b161996 100644 --- a/drivers/hwmon/lm95241.c +++ b/drivers/hwmon/lm95241.c @@ -21,15 +21,15 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#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.h> #include <linux/hwmon-sysfs.h> -#include <linux/err.h> +#include <linux/module.h> #include <linux/mutex.h> +#include <linux/slab.h> #include <linux/sysfs.h> #define DEVNAME "lm95241" |