diff options
Diffstat (limited to 'arch/arm/mach-pxa')
| -rw-r--r-- | arch/arm/mach-pxa/include/mach/udc.h | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 6 | 
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/include/mach/udc.h b/arch/arm/mach-pxa/include/mach/udc.h index 2f82332e81a..9a827e32db9 100644 --- a/arch/arm/mach-pxa/include/mach/udc.h +++ b/arch/arm/mach-pxa/include/mach/udc.h @@ -2,7 +2,7 @@   * arch/arm/mach-pxa/include/mach/udc.h   *   */ -#include <asm/mach/udc_pxa2xx.h> +#include <linux/platform_data/pxa2xx_udc.h>  extern void pxa_set_udc_info(struct pxa2xx_udc_mach_info *info); diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3352b37b60c..3f5171eaf67 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c @@ -209,6 +209,7 @@ static struct clk_lookup pxa25x_clkregs[] = {  	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 = @@ -338,6 +339,10 @@ void __init pxa25x_map_io(void)  	pxa25x_get_clk_frequency_khz(1);  } +static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = { +	.gpio_set_wake = gpio_set_wake, +}; +  static struct platform_device *pxa25x_devices[] __initdata = {  	&pxa25x_device_udc,  	&pxa_device_pmu, @@ -370,6 +375,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);  		ret = platform_add_devices(pxa25x_devices,  					   ARRAY_SIZE(pxa25x_devices));  		if (ret)  |