diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-01-31 08:38:48 -0500 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2013-03-02 15:09:57 -0500 |
commit | 82f0167aa4c4bbc06b5a2e1e83d252792f7c5754 (patch) | |
tree | 6d945c917963c7ea32e19fb7f3db6ba9d4120dfc /arch | |
parent | 1bea5b8188e98611e4d6961647809f87b023e14c (diff) |
metag: kernel/setup.c: sort includes
Sort includes in kernel/setup.c.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/metag/kernel/setup.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/arch/metag/kernel/setup.c b/arch/metag/kernel/setup.c index 89f9cdc389e8..aaebc56270ec 100644 --- a/arch/metag/kernel/setup.c +++ b/arch/metag/kernel/setup.c | |||
@@ -5,43 +5,43 @@ | |||
5 | * | 5 | * |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/kernel.h> | 8 | #include <linux/bootmem.h> |
9 | #include <linux/mm.h> | 9 | #include <linux/console.h> |
10 | #include <linux/sched.h> | 10 | #include <linux/cpu.h> |
11 | #include <linux/delay.h> | 11 | #include <linux/delay.h> |
12 | #include <linux/interrupt.h> | 12 | #include <linux/errno.h> |
13 | #include <linux/fs.h> | 13 | #include <linux/fs.h> |
14 | #include <linux/console.h> | ||
15 | #include <linux/genhd.h> | 14 | #include <linux/genhd.h> |
16 | #include <linux/errno.h> | ||
17 | #include <linux/string.h> | ||
18 | #include <linux/init.h> | 15 | #include <linux/init.h> |
19 | #include <linux/bootmem.h> | ||
20 | #include <linux/root_dev.h> | ||
21 | #include <linux/initrd.h> | 16 | #include <linux/initrd.h> |
22 | #include <linux/seq_file.h> | 17 | #include <linux/interrupt.h> |
23 | #include <linux/pfn.h> | 18 | #include <linux/kernel.h> |
24 | #include <linux/start_kernel.h> | ||
25 | #include <linux/cpu.h> | ||
26 | #include <linux/memblock.h> | 19 | #include <linux/memblock.h> |
20 | #include <linux/mm.h> | ||
27 | #include <linux/of_fdt.h> | 21 | #include <linux/of_fdt.h> |
22 | #include <linux/pfn.h> | ||
23 | #include <linux/root_dev.h> | ||
24 | #include <linux/sched.h> | ||
25 | #include <linux/seq_file.h> | ||
26 | #include <linux/start_kernel.h> | ||
27 | #include <linux/string.h> | ||
28 | 28 | ||
29 | #include <asm/cachepart.h> | 29 | #include <asm/cachepart.h> |
30 | #include <asm/clock.h> | 30 | #include <asm/clock.h> |
31 | #include <asm/sections.h> | 31 | #include <asm/core_reg.h> |
32 | #include <asm/setup.h> | ||
33 | #include <asm/processor.h> | ||
34 | #include <asm/traps.h> | ||
35 | #include <asm/mmu.h> | ||
36 | #include <asm/cpu.h> | 32 | #include <asm/cpu.h> |
33 | #include <asm/da.h> | ||
34 | #include <asm/highmem.h> | ||
37 | #include <asm/hwthread.h> | 35 | #include <asm/hwthread.h> |
38 | #include <asm/mmzone.h> | ||
39 | #include <asm/l2cache.h> | 36 | #include <asm/l2cache.h> |
40 | #include <asm/da.h> | ||
41 | #include <asm/prom.h> | ||
42 | #include <asm/mach/arch.h> | 37 | #include <asm/mach/arch.h> |
43 | #include <asm/core_reg.h> | 38 | #include <asm/mmu.h> |
44 | #include <asm/highmem.h> | 39 | #include <asm/mmzone.h> |
40 | #include <asm/processor.h> | ||
41 | #include <asm/prom.h> | ||
42 | #include <asm/sections.h> | ||
43 | #include <asm/setup.h> | ||
44 | #include <asm/traps.h> | ||
45 | 45 | ||
46 | /* PRIV protect as many registers as possible. */ | 46 | /* PRIV protect as many registers as possible. */ |
47 | #define DEFAULT_PRIV 0xff0f7f00 | 47 | #define DEFAULT_PRIV 0xff0f7f00 |