diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-07-28 15:49:24 -0400 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-09-05 07:19:08 -0400 |
commit | 6932ff5395e3a2541fba696b38dc71393cf7ce57 (patch) | |
tree | fcd2f12e189903ec10242d27a9260ebe30b74457 /drivers/rtc | |
parent | 73ab31ce1bbc64c590b2a2d58364942adfa11a3f (diff) |
rtc: at91sam9: sort headers alphabetically
Sort included headers alphabetically.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-at91sam9.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c index 0a8485ac3864..23f721d049b2 100644 --- a/drivers/rtc/rtc-at91sam9.c +++ b/drivers/rtc/rtc-at91sam9.c | |||
@@ -11,20 +11,20 @@ | |||
11 | * 2 of the License, or (at your option) any later version. | 11 | * 2 of the License, or (at your option) any later version. |
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include <linux/module.h> | 14 | #include <linux/clk.h> |
15 | #include <linux/kernel.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/time.h> | ||
18 | #include <linux/rtc.h> | ||
19 | #include <linux/interrupt.h> | 15 | #include <linux/interrupt.h> |
20 | #include <linux/ioctl.h> | 16 | #include <linux/ioctl.h> |
21 | #include <linux/slab.h> | ||
22 | #include <linux/platform_data/atmel.h> | ||
23 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/kernel.h> | ||
24 | #include <linux/mfd/syscon.h> | 19 | #include <linux/mfd/syscon.h> |
20 | #include <linux/module.h> | ||
21 | #include <linux/platform_data/atmel.h> | ||
22 | #include <linux/platform_device.h> | ||
25 | #include <linux/regmap.h> | 23 | #include <linux/regmap.h> |
24 | #include <linux/rtc.h> | ||
25 | #include <linux/slab.h> | ||
26 | #include <linux/suspend.h> | 26 | #include <linux/suspend.h> |
27 | #include <linux/clk.h> | 27 | #include <linux/time.h> |
28 | 28 | ||
29 | /* | 29 | /* |
30 | * This driver uses two configurable hardware resources that live in the | 30 | * This driver uses two configurable hardware resources that live in the |