Browse Source

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>
Guenter Roeck 9 years ago
parent
commit
4b2ea08be9
1 changed files with 4 additions and 4 deletions
  1. 4 4
      drivers/hwmon/lm95241.c

+ 4 - 4
drivers/hwmon/lm95241.c

@@ -21,15 +21,15 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  * 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/init.h>
-#include <linux/slab.h>
 #include <linux/jiffies.h>
 #include <linux/jiffies.h>
-#include <linux/i2c.h>
 #include <linux/hwmon.h>
 #include <linux/hwmon.h>
 #include <linux/hwmon-sysfs.h>
 #include <linux/hwmon-sysfs.h>
-#include <linux/err.h>
+#include <linux/module.h>
 #include <linux/mutex.h>
 #include <linux/mutex.h>
+#include <linux/slab.h>
 #include <linux/sysfs.h>
 #include <linux/sysfs.h>
 
 
 #define DEVNAME "lm95241"
 #define DEVNAME "lm95241"