Skip to content

Commit 9e60bb8

Browse files
committed
hwmon: (ina2xx) Reorder include files to alphabetic order
Simplify driver maintenance by reordering include files to alphabetic order. Whule at it, drop unnecessary / unused jiffies.h. No functional change. Reviewed-by: Tzung-Bi Shih <[email protected]> Signed-off-by: Guenter Roeck <[email protected]>
1 parent 2f0d987 commit 9e60bb8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

drivers/hwmon/ina2xx.c

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@
2222
* Thanks to Jan Volkering
2323
*/
2424

25-
#include <linux/kernel.h>
26-
#include <linux/module.h>
27-
#include <linux/init.h>
25+
#include <linux/delay.h>
2826
#include <linux/err.h>
29-
#include <linux/slab.h>
30-
#include <linux/i2c.h>
3127
#include <linux/hwmon.h>
3228
#include <linux/hwmon-sysfs.h>
33-
#include <linux/jiffies.h>
29+
#include <linux/i2c.h>
30+
#include <linux/init.h>
31+
#include <linux/kernel.h>
32+
#include <linux/module.h>
3433
#include <linux/of.h>
35-
#include <linux/delay.h>
36-
#include <linux/util_macros.h>
3734
#include <linux/regmap.h>
35+
#include <linux/slab.h>
36+
#include <linux/util_macros.h>
3837

3938
#include <linux/platform_data/ina2xx.h>
4039

0 commit comments

Comments
 (0)