diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-01-31 13:38:48 +0000 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2013-03-02 20:09:57 +0000 |
commit | 82f0167aa4c4bbc06b5a2e1e83d252792f7c5754 (patch) | |
tree | 6d945c917963c7ea32e19fb7f3db6ba9d4120dfc /arch/metag/kernel | |
parent | 1bea5b8188e98611e4d6961647809f87b023e14c (diff) | |
download | blackbird-obmc-linux-82f0167aa4c4bbc06b5a2e1e83d252792f7c5754.tar.gz blackbird-obmc-linux-82f0167aa4c4bbc06b5a2e1e83d252792f7c5754.zip |
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/metag/kernel')
-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 @@ * */ -#include <linux/kernel.h> -#include <linux/mm.h> -#include <linux/sched.h> +#include <linux/bootmem.h> +#include <linux/console.h> +#include <linux/cpu.h> #include <linux/delay.h> -#include <linux/interrupt.h> +#include <linux/errno.h> #include <linux/fs.h> -#include <linux/console.h> #include <linux/genhd.h> -#include <linux/errno.h> -#include <linux/string.h> #include <linux/init.h> -#include <linux/bootmem.h> -#include <linux/root_dev.h> #include <linux/initrd.h> -#include <linux/seq_file.h> -#include <linux/pfn.h> -#include <linux/start_kernel.h> -#include <linux/cpu.h> +#include <linux/interrupt.h> +#include <linux/kernel.h> #include <linux/memblock.h> +#include <linux/mm.h> #include <linux/of_fdt.h> +#include <linux/pfn.h> +#include <linux/root_dev.h> +#include <linux/sched.h> +#include <linux/seq_file.h> +#include <linux/start_kernel.h> +#include <linux/string.h> #include <asm/cachepart.h> #include <asm/clock.h> -#include <asm/sections.h> -#include <asm/setup.h> -#include <asm/processor.h> -#include <asm/traps.h> -#include <asm/mmu.h> +#include <asm/core_reg.h> #include <asm/cpu.h> +#include <asm/da.h> +#include <asm/highmem.h> #include <asm/hwthread.h> -#include <asm/mmzone.h> #include <asm/l2cache.h> -#include <asm/da.h> -#include <asm/prom.h> #include <asm/mach/arch.h> -#include <asm/core_reg.h> -#include <asm/highmem.h> +#include <asm/mmu.h> +#include <asm/mmzone.h> +#include <asm/processor.h> +#include <asm/prom.h> +#include <asm/sections.h> +#include <asm/setup.h> +#include <asm/traps.h> /* PRIV protect as many registers as possible. */ #define DEFAULT_PRIV 0xff0f7f00 |