diff options
Diffstat (limited to 'arch/arm/mach-omap2/gpmc.c')
-rw-r--r-- | arch/arm/mach-omap2/gpmc.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index 130034b..82e6f82 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c @@ -78,9 +78,9 @@ struct gpmc_cs_config { /* * Structure to save/restore gpmc context - * to support core off on OMAP3 + * to support core off. */ -struct omap3_gpmc_regs { +struct omap_gpmc_regs { u32 sysconfig; u32 irqenable; u32 timeout_ctrl; @@ -770,10 +770,9 @@ static irqreturn_t gpmc_handle_irq(int irq, void *dev) return IRQ_HANDLED; } -#ifdef CONFIG_ARCH_OMAP3 -static struct omap3_gpmc_regs gpmc_context; +static struct omap_gpmc_regs gpmc_context; -void omap3_gpmc_save_context(void) +void omap_gpmc_save_context(void) { int i; @@ -805,7 +804,7 @@ void omap3_gpmc_save_context(void) } } -void omap3_gpmc_restore_context(void) +void omap_gpmc_restore_context(void) { int i; @@ -835,7 +834,6 @@ void omap3_gpmc_restore_context(void) } } } -#endif /* CONFIG_ARCH_OMAP3 */ /** * gpmc_enable_hwecc - enable hardware ecc functionality |