diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-18 21:13:22 -0400 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-28 08:20:59 -0400 |
commit | 4b3a6a3ac559d8f81d79e661ccde6bdd08395225 (patch) | |
tree | 5344dc02ed78993a4915d57f6f8b34a63be1973c | |
parent | eb2bccb70b979d996ecb769d692b92ff12eabbb7 (diff) |
rtc: isl1208: don't include core header file
The core header file is reserved for the core, stop including it.
Also reorder includes alphabetically.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r-- | drivers/rtc/rtc-isl1208.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/rtc/rtc-isl1208.c b/drivers/rtc/rtc-isl1208.c index 033f65aef578..ec5ef518a09b 100644 --- a/drivers/rtc/rtc-isl1208.c +++ b/drivers/rtc/rtc-isl1208.c | |||
@@ -10,12 +10,11 @@ | |||
10 | * | 10 | * |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/module.h> | ||
14 | #include <linux/i2c.h> | ||
15 | #include <linux/bcd.h> | 13 | #include <linux/bcd.h> |
16 | #include <linux/rtc.h> | 14 | #include <linux/i2c.h> |
17 | #include "rtc-core.h" | 15 | #include <linux/module.h> |
18 | #include <linux/of_irq.h> | 16 | #include <linux/of_irq.h> |
17 | #include <linux/rtc.h> | ||
19 | 18 | ||
20 | /* Register map */ | 19 | /* Register map */ |
21 | /* rtc section */ | 20 | /* rtc section */ |