diff options
Diffstat (limited to 'arch/arm/mach-pxa/pxa25x.c')
| -rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index f05f9486b0c..adf058fa97e 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -17,6 +17,7 @@   * need be.   */  #include <linux/gpio.h> +#include <linux/gpio-pxa.h>  #include <linux/module.h>  #include <linux/kernel.h>  #include <linux/init.h> @@ -208,6 +209,8 @@ static struct clk_lookup pxa25x_clkregs[] = {  	INIT_CLKREG(&clk_pxa25x_gpio11, NULL, "GPIO11_CLK"),  	INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"),  	INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), +	INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), +	INIT_CLKREG(&clk_dummy, "sa1100-rtc", NULL),  };  static struct clk_lookup pxa25x_hwuart_clkreg = @@ -287,7 +290,7 @@ static inline void pxa25x_init_pm(void) {}  static int pxa25x_set_wake(struct irq_data *d, unsigned int on)  { -	int gpio = irq_to_gpio(d->irq); +	int gpio = pxa_irq_to_gpio(d->irq);  	uint32_t mask = 0;  	if (gpio >= 0 && gpio < 85) @@ -312,14 +315,12 @@ set_pwer:  void __init pxa25x_init_irq(void)  {  	pxa_init_irq(32, pxa25x_set_wake); -	pxa_init_gpio(IRQ_GPIO_2_x, 2, 84, pxa25x_set_wake);  }  #ifdef CONFIG_CPU_PXA26x  void __init pxa26x_init_irq(void)  {  	pxa_init_irq(32, pxa25x_set_wake); -	pxa_init_gpio(IRQ_GPIO_2_x, 2, 89, pxa25x_set_wake);  }  #endif  |