diff options
author | Tony Lindgren <tony@atomide.com> | 2009-12-11 16:16:33 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-12-11 16:16:33 -0800 |
commit | 662c8b55d26abeabc0b125f922dfa66338a046ae (patch) | |
tree | c983e25b2b90df62ffca47ee0d849de30b203353 /arch/arm/mach-omap2/board-3630sdp.c | |
parent | 15f45e6f27b0ef0719171978acadf073b066fb74 (diff) | |
download | talos-obmc-linux-662c8b55d26abeabc0b125f922dfa66338a046ae.tar.gz talos-obmc-linux-662c8b55d26abeabc0b125f922dfa66338a046ae.zip |
omap: mux: Add 36xx CBP package support
Add 36xx CBP package support
Cc: Benoit Cousson <b-cousson@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-3630sdp.c')
-rwxr-xr-x | arch/arm/mach-omap2/board-3630sdp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-3630sdp.c b/arch/arm/mach-omap2/board-3630sdp.c index e6cbc27dd107..739059632811 100755 --- a/arch/arm/mach-omap2/board-3630sdp.c +++ b/arch/arm/mach-omap2/board-3630sdp.c @@ -85,8 +85,17 @@ static void __init omap_sdp_init_irq(void) omap_gpio_init(); } +#ifdef CONFIG_OMAP_MUX +static struct omap_board_mux board_mux[] __initdata = { + { .reg_offset = OMAP_MUX_TERMINATOR }, +}; +#else +#define board_mux NULL +#endif + static void __init omap_sdp_init(void) { + omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); zoom_peripherals_init(); board_smc91x_init(); enable_board_wakeup_source(); |