Skip to content

Commit

Permalink
[ARM] 3278/1: OMAP: 3/3 Fix low-level io init for omap2 boards
Browse files Browse the repository at this point in the history
Patch from Tony Lindgren

This patch fixes the low-level IO init for omap2 boards.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Tony Lindgren authored and Russell King committed Feb 8, 2006
1 parent 87bd63f commit 18f49ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion arch/arm/mach-omap2/board-generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

static void __init omap_generic_init_irq(void)
{
omap2_init_common_hw();
omap_init_irq();
}

Expand Down Expand Up @@ -64,7 +65,7 @@ static void __init omap_generic_init(void)

static void __init omap_generic_map_io(void)
{
omap_map_common_io();
omap2_map_common_io();
}

MACHINE_START(OMAP_GENERIC, "Generic OMAP24xx")
Expand Down
3 changes: 2 additions & 1 deletion arch/arm/mach-omap2/board-h4.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ static inline void __init h4_init_smc91x(void)

static void __init omap_h4_init_irq(void)
{
omap2_init_common_hw();
omap_init_irq();
omap_gpio_init();
h4_init_smc91x();
Expand Down Expand Up @@ -181,7 +182,7 @@ static void __init omap_h4_init(void)

static void __init omap_h4_map_io(void)
{
omap_map_common_io();
omap2_map_common_io();
}

MACHINE_START(OMAP_H4, "OMAP2420 H4 board")
Expand Down

0 comments on commit 18f49ea

Please sign in to comment.