Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 313566
b: refs/heads/master
c: d660e9b
h: refs/heads/master
v: v3
  • Loading branch information
Kevin Hilman authored and Tony Lindgren committed Jun 29, 2012
1 parent e9ec350 commit c32fb49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4556494b06801b56d2b09e4cce0885902b2429bf
refs/heads/master: d660e9b92b44f113c3fc345a8ce66ffa56a3506f
9 changes: 7 additions & 2 deletions trunk/arch/arm/mach-omap2/prm2xxx_3xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,11 +351,16 @@ static void __init omap3xxx_prm_enable_io_wakeup(void)

static int __init omap3xxx_prcm_init(void)
{
int ret = 0;

if (cpu_is_omap34xx()) {
omap3xxx_prm_enable_io_wakeup();
return omap_prcm_register_chain_handler(&omap3_prcm_irq_setup);
ret = omap_prcm_register_chain_handler(&omap3_prcm_irq_setup);
if (!ret)
irq_set_status_flags(omap_prcm_event_to_irq("io"),
IRQ_NOAUTOEN);
}

return 0;
return ret;
}
subsys_initcall(omap3xxx_prcm_init);

0 comments on commit c32fb49

Please sign in to comment.