diff mbox series

[v2,1/6] hwmon: (max6697) Reorder include files

Message ID 20240723154447.2669995-2-linux@roeck-us.net (mailing list archive)
State Accepted
Headers show
Series hwmon: (max6697) Cleanup, use regmap and with_info API | expand

Commit Message

Guenter Roeck July 23, 2024, 3:44 p.m. UTC
Reorder include files to alphabetic order to improve maintainability.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
v2: Really alphabetical order

 drivers/hwmon/max6697.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Comments

Tzung-Bi Shih July 24, 2024, 1:01 p.m. UTC | #1
On Tue, Jul 23, 2024 at 08:44:42AM -0700, Guenter Roeck wrote:
> Reorder include files to alphabetic order to improve maintainability.
> 
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>

Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>
diff mbox series

Patch

diff --git a/drivers/hwmon/max6697.c b/drivers/hwmon/max6697.c
index 20981f9443dd..9a2a21230c7d 100644
--- a/drivers/hwmon/max6697.c
+++ b/drivers/hwmon/max6697.c
@@ -6,16 +6,16 @@ 
  * Copyright (c) 2011 David George <david.george@ska.ac.za>
  */
 
-#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/mutex.h>
 #include <linux/of.h>
+#include <linux/slab.h>
 
 #include <linux/platform_data/max6697.h>