diff options
Diffstat (limited to 'arch/arm/mach-pxa/pxa25x.c')
| -rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3f5171eaf67..f2c28972084 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -208,7 +208,11 @@ 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), +#ifdef CONFIG_CPU_PXA26x +	INIT_CLKREG(&clk_dummy, "pxa26x-gpio", NULL), +#else +	INIT_CLKREG(&clk_dummy, "pxa25x-gpio", NULL), +#endif  	INIT_CLKREG(&clk_dummy, "sa1100-rtc", NULL),  }; @@ -340,7 +344,8 @@ void __init pxa25x_map_io(void)  }  static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = { -	.gpio_set_wake = gpio_set_wake, +	.irq_base	= PXA_GPIO_TO_IRQ(0), +	.gpio_set_wake	= gpio_set_wake,  };  static struct platform_device *pxa25x_devices[] __initdata = { @@ -375,7 +380,7 @@ static int __init pxa25x_init(void)  		register_syscore_ops(&pxa2xx_mfp_syscore_ops);  		register_syscore_ops(&pxa2xx_clock_syscore_ops); -		pxa_register_device(&pxa_device_gpio, &pxa25x_gpio_info); +		pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info);  		ret = platform_add_devices(pxa25x_devices,  					   ARRAY_SIZE(pxa25x_devices));  		if (ret)  |