aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shevchenko <[email protected]>2023-01-10 16:08:06 +0200
committerAlexandre Belloni <[email protected]>2023-02-22 21:06:30 +0100
commit303eac653a181be59674920725142cfbdd5ba4cd (patch)
treebeb92f4707379fe72380b87da8f75a1024de338d
parent9bb1e189d7d2c3838938efcc497333803b946081 (diff)
rtc: isl12022: sort header inclusion alphabetically
Sort header inclusion alphabetically for better maintenance. Signed-off-by: Andy Shevchenko <[email protected]> Acked-by: Rasmus Villemoes <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Alexandre Belloni <[email protected]>
-rw-r--r--drivers/rtc/rtc-isl12022.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/rtc/rtc-isl12022.c b/drivers/rtc/rtc-isl12022.c
index ee38c5067ea8..e68a79b5e00e 100644
--- a/drivers/rtc/rtc-isl12022.c
+++ b/drivers/rtc/rtc-isl12022.c
@@ -8,14 +8,14 @@
* by Alessandro Zummo <[email protected]>.
*/
-#include <linux/i2c.h>
#include <linux/bcd.h>
-#include <linux/rtc.h>
-#include <linux/slab.h>
-#include <linux/module.h>
#include <linux/err.h>
-#include <linux/regmap.h>
#include <linux/hwmon.h>
+#include <linux/i2c.h>
+#include <linux/module.h>
+#include <linux/regmap.h>
+#include <linux/rtc.h>
+#include <linux/slab.h>
#include <asm/byteorder.h>