diff options
Diffstat (limited to 'arch/arm/mach-omap2/prm_common.c')
| -rw-r--r-- | arch/arm/mach-omap2/prm_common.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index 7add7994dbfc..3fc2cbe52113 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c @@ -102,7 +102,7 @@ static void omap_prcm_events_filter_priority(unsigned long *events,   * dispatched accordingly. Clearing of the wakeup events should be   * done by the SoC specific individual handlers.   */ -static void omap_prcm_irq_handler(unsigned int irq, struct irq_desc *desc) +static void omap_prcm_irq_handler(struct irq_desc *desc)  {  	unsigned long pending[OMAP_PRCM_MAX_NR_PENDING_REG];  	unsigned long priority_pending[OMAP_PRCM_MAX_NR_PENDING_REG]; @@ -696,6 +696,7 @@ static struct omap_prcm_init_data am4_prm_data __initdata = {  	.index = TI_CLKM_PRM,  	.init = omap44xx_prm_init,  	.device_inst_offset = AM43XX_PRM_DEVICE_INST, +	.flags = PRM_HAS_IO_WAKEUP,  };  #endif @@ -705,7 +706,7 @@ static struct omap_prcm_init_data scrm_data __initdata = {  };  #endif -static const struct of_device_id omap_prcm_dt_match_table[] __initconst = { +static const struct of_device_id const omap_prcm_dt_match_table[] __initconst = {  #ifdef CONFIG_SOC_AM33XX  	{ .compatible = "ti,am3-prcm", .data = &am3_prm_data },  #endif |