diff options
author | Tony Lindgren <tony@atomide.com> | 2012-02-24 10:34:34 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2012-02-24 10:34:34 -0800 |
commit | 2e3ee9f45b3c25faa012abc9a62ab7aa515cd617 (patch) | |
tree | 0573cc65c3c8906453d949b5fe7f7499d1a25da1 /arch/arm/mach-omap1/pm.c | |
parent | 63325ff235deeed5a5fc25705e292239115c76cd (diff) | |
download | linux-2e3ee9f45b3c25faa012abc9a62ab7aa515cd617.tar.gz linux-2e3ee9f45b3c25faa012abc9a62ab7aa515cd617.tar.bz2 linux-2e3ee9f45b3c25faa012abc9a62ab7aa515cd617.zip |
ARM: OMAP1: Move most of plat/io.h into local iomap.h
There's no need to have these in plat/io.h.
While at it, clean up the includes to group them
like they typically are grouped.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/pm.c')
-rw-r--r-- | arch/arm/mach-omap1/pm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 89ea20ca0ccc..c06bb4098ac7 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c @@ -42,14 +42,13 @@ #include <linux/sysfs.h> #include <linux/module.h> #include <linux/io.h> +#include <linux/atomic.h> #include <asm/irq.h> -#include <linux/atomic.h> #include <asm/mach/time.h> #include <asm/mach/irq.h> #include <plat/cpu.h> -#include <mach/irqs.h> #include <plat/clock.h> #include <plat/sram.h> #include <plat/tc.h> @@ -57,6 +56,9 @@ #include <plat/dma.h> #include <plat/dmtimer.h> +#include <mach/irqs.h> + +#include "iomap.h" #include "pm.h" static unsigned int arm_sleep_save[ARM_SLEEP_SAVE_SIZE]; |