summaryrefslogtreecommitdiff
path: root/drivers/hwmon/lm95234.c
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2024-07-07 07:49:51 -0700
committerGuenter Roeck <linux@roeck-us.net>2024-07-31 10:43:51 -0700
commit8abff91c6173b175bda3381bdb14981249502434 (patch)
tree3319f5183e4aa5a910278c50e765717db1c9f5f9 /drivers/hwmon/lm95234.c
parentc37d0f08f8897f8a280566908545d13d450ba6ef (diff)
hwmon: (lm95234) Reorder include files to be in alphabetic order
Alphabetic include file order simplifies maintenance and makes it easier to add or remove files. 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/lm95234.c')
-rw-r--r--drivers/hwmon/lm95234.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/hwmon/lm95234.c b/drivers/hwmon/lm95234.c
index 9a7afdb49895..0c509eed6a01 100644
--- a/drivers/hwmon/lm95234.c
+++ b/drivers/hwmon/lm95234.c
@@ -8,14 +8,14 @@
* Copyright (C) 2008, 2010 Davide Rizzo <elpa.rizzo@gmail.com>
*/
-#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/slab.h>
#include <linux/mutex.h>
#include <linux/sysfs.h>