diff options
| author | Alistair Buxton <a.j.buxton@gmail.com> | 2009-09-18 04:09:39 +0100 | 
|---|---|---|
| committer | Alistair Buxton <a.j.buxton@gmail.com> | 2009-10-07 23:14:06 +0100 | 
| commit | 372b1c32e7e7d7aa5f44e0eaed4ad8ae21e4e9da (patch) | |
| tree | 32491b47873015ae75cf2e8bc675cb20e00ab259 /arch/arm/mach-omap1/pm.c | |
| parent | b51988db94faec47d6e7c69c8e691cfc194f66db (diff) | |
| download | olio-linux-3.10-372b1c32e7e7d7aa5f44e0eaed4ad8ae21e4e9da.tar.xz olio-linux-3.10-372b1c32e7e7d7aa5f44e0eaed4ad8ae21e4e9da.zip  | |
OMAP7XX: Replace omap730 references in irqs.h and all users
This patch is part of a series which removes references to omap730 in code
which is shared with omap850, replacing them with references to omap7xx.
Turns INT_730_* to INT_7XX_* for definitions in irqs.h and all users.
Signed-off-by: Alistair Buxton <a.j.buxton@gmail.com>
Reviewed-by: Zebediah C. McClure <zmc@lurian.net>
Diffstat (limited to 'arch/arm/mach-omap1/pm.c')
| -rw-r--r-- | arch/arm/mach-omap1/pm.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c index 12f246e3cdc..58479c75cac 100644 --- a/arch/arm/mach-omap1/pm.c +++ b/arch/arm/mach-omap1/pm.c @@ -184,8 +184,8 @@ static void omap_pm_wakeup_setup(void)  	 * wake up to a GPIO interrupt.  	 */  	if (cpu_is_omap7xx()) -		level1_wake = OMAP_IRQ_BIT(INT_730_GPIO_BANK1) | -			OMAP_IRQ_BIT(INT_730_IH2_IRQ); +		level1_wake = OMAP_IRQ_BIT(INT_7XX_GPIO_BANK1) | +			OMAP_IRQ_BIT(INT_7XX_IH2_IRQ);  	else if (cpu_is_omap15xx())  		level1_wake = OMAP_IRQ_BIT(INT_GPIO_BANK1) |  			OMAP_IRQ_BIT(INT_1510_IH2_IRQ); @@ -197,8 +197,8 @@ static void omap_pm_wakeup_setup(void)  	if (cpu_is_omap7xx()) {  		omap_writel(~level2_wake, OMAP_IH2_0_MIR); -		omap_writel(~(OMAP_IRQ_BIT(INT_730_WAKE_UP_REQ) | -				OMAP_IRQ_BIT(INT_730_MPUIO_KEYPAD)), +		omap_writel(~(OMAP_IRQ_BIT(INT_7XX_WAKE_UP_REQ) | +				OMAP_IRQ_BIT(INT_7XX_MPUIO_KEYPAD)),  				OMAP_IH2_1_MIR);  	} else if (cpu_is_omap15xx()) {  		level2_wake |= OMAP_IRQ_BIT(INT_KEYBOARD); @@ -687,7 +687,7 @@ static int __init omap_pm_init(void)  	pm_idle = omap1_pm_idle;  	if (cpu_is_omap7xx()) -		setup_irq(INT_730_WAKE_UP_REQ, &omap_wakeup_irq); +		setup_irq(INT_7XX_WAKE_UP_REQ, &omap_wakeup_irq);  	else if (cpu_is_omap16xx())  		setup_irq(INT_1610_WAKE_UP_REQ, &omap_wakeup_irq);  |