diff options
author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2013-12-06 04:59:10 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-12-23 21:17:25 -0500 |
commit | 8fb9631c517b862267590e7af93615a6ef03394d (patch) | |
tree | dc11031283faff8312ea625dcb94cbf5ec15cd77 /drivers/tty/serial/sh-sci.c | |
parent | b016b646e8676858f39ea9be760494b04b9ee0af (diff) |
serial: sh-sci: Sort headers alphabetically
This helps locating duplicates.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/tty/serial/sh-sci.c')
-rw-r--r-- | drivers/tty/serial/sh-sci.c | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index 1a3fc7a2e4db..e98a217e2fc0 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c | |||
@@ -23,35 +23,35 @@ | |||
23 | 23 | ||
24 | #undef DEBUG | 24 | #undef DEBUG |
25 | 25 | ||
26 | #include <linux/module.h> | 26 | #include <linux/clk.h> |
27 | #include <linux/console.h> | ||
28 | #include <linux/ctype.h> | ||
29 | #include <linux/cpufreq.h> | ||
30 | #include <linux/delay.h> | ||
31 | #include <linux/dmaengine.h> | ||
32 | #include <linux/dma-mapping.h> | ||
33 | #include <linux/err.h> | ||
27 | #include <linux/errno.h> | 34 | #include <linux/errno.h> |
28 | #include <linux/sh_dma.h> | 35 | #include <linux/gpio.h> |
29 | #include <linux/timer.h> | 36 | #include <linux/init.h> |
30 | #include <linux/interrupt.h> | 37 | #include <linux/interrupt.h> |
31 | #include <linux/tty.h> | ||
32 | #include <linux/tty_flip.h> | ||
33 | #include <linux/serial.h> | ||
34 | #include <linux/major.h> | ||
35 | #include <linux/string.h> | ||
36 | #include <linux/sysrq.h> | ||
37 | #include <linux/ioport.h> | 38 | #include <linux/ioport.h> |
39 | #include <linux/major.h> | ||
40 | #include <linux/module.h> | ||
38 | #include <linux/mm.h> | 41 | #include <linux/mm.h> |
39 | #include <linux/init.h> | ||
40 | #include <linux/delay.h> | ||
41 | #include <linux/console.h> | ||
42 | #include <linux/platform_device.h> | ||
43 | #include <linux/serial_sci.h> | ||
44 | #include <linux/notifier.h> | 42 | #include <linux/notifier.h> |
43 | #include <linux/platform_device.h> | ||
45 | #include <linux/pm_runtime.h> | 44 | #include <linux/pm_runtime.h> |
46 | #include <linux/cpufreq.h> | ||
47 | #include <linux/clk.h> | ||
48 | #include <linux/ctype.h> | ||
49 | #include <linux/err.h> | ||
50 | #include <linux/dmaengine.h> | ||
51 | #include <linux/dma-mapping.h> | ||
52 | #include <linux/scatterlist.h> | 45 | #include <linux/scatterlist.h> |
46 | #include <linux/serial.h> | ||
47 | #include <linux/serial_sci.h> | ||
48 | #include <linux/sh_dma.h> | ||
53 | #include <linux/slab.h> | 49 | #include <linux/slab.h> |
54 | #include <linux/gpio.h> | 50 | #include <linux/string.h> |
51 | #include <linux/sysrq.h> | ||
52 | #include <linux/timer.h> | ||
53 | #include <linux/tty.h> | ||
54 | #include <linux/tty_flip.h> | ||
55 | 55 | ||
56 | #ifdef CONFIG_SUPERH | 56 | #ifdef CONFIG_SUPERH |
57 | #include <asm/sh_bios.h> | 57 | #include <asm/sh_bios.h> |