[v1,5/5] rtc: isl12022: sort header inclusion alphabetically

Message ID 20221126141806.62205-5-andriy.shevchenko@linux.intel.com
State New
Headers
Series [v1,1/5] rtc: isl12022: Get rid of unneeded private struct isl12022 |

Commit Message

Andy Shevchenko Nov. 26, 2022, 2:18 p.m. UTC
  Sort header inclusion alphabetically for better maintenance.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/rtc/rtc-isl12022.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
  

Comments

Rasmus Villemoes Nov. 29, 2022, 2:15 p.m. UTC | #1
On 26/11/2022 15.18, Andy Shevchenko wrote:
> Sort header inclusion alphabetically for better maintenance.

Acked-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
  

Patch

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 <a.zummo@towertech.it>.
  */
 
-#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>