diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-19 03:13:22 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-09-28 14:20:59 +0200 |
commit | 4b3a6a3ac559d8f81d79e661ccde6bdd08395225 (patch) | |
tree | 5344dc02ed78993a4915d57f6f8b34a63be1973c /drivers/rtc | |
parent | eb2bccb70b979d996ecb769d692b92ff12eabbb7 (diff) | |
download | talos-obmc-linux-4b3a6a3ac559d8f81d79e661ccde6bdd08395225.tar.gz talos-obmc-linux-4b3a6a3ac559d8f81d79e661ccde6bdd08395225.zip |
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>
Diffstat (limited to 'drivers/rtc')
-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 @@ * */ -#include <linux/module.h> -#include <linux/i2c.h> #include <linux/bcd.h> -#include <linux/rtc.h> -#include "rtc-core.h" +#include <linux/i2c.h> +#include <linux/module.h> #include <linux/of_irq.h> +#include <linux/rtc.h> /* Register map */ /* rtc section */ |