diff options
| author | James Wylder <jwylder@motorola.com> | 2014-02-09 16:29:01 -0600 | 
|---|---|---|
| committer | James Wylder <jwylder@motorola.com> | 2014-03-05 17:47:19 -0600 | 
| commit | 4e584df9a3d86a480bfa9111eaf7ae18b77cdaf8 (patch) | |
| tree | 801788eaebf70820967f464fff5e7b8e35679ab6 | |
| parent | 902d97cdcb22da19f68930b30e24a16c3033db99 (diff) | |
| download | olio-linux-3.10-4e584df9a3d86a480bfa9111eaf7ae18b77cdaf8.tar.xz olio-linux-3.10-4e584df9a3d86a480bfa9111eaf7ae18b77cdaf8.zip | |
IKXCLOCK-221 arm: minnow: remove board init of musb
The omap2430-musb driver is being probed as a result
of entries in both the board files and the device tree.
Remove the board file initialization.
Change-Id: I305483f119d275b4eab55ce59cca508da49e4a10
Signed-off-by: James Wylder <jwylder@motorola.com>
| -rw-r--r-- | arch/arm/mach-omap2/board-minnow.c | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/arch/arm/mach-omap2/board-minnow.c b/arch/arm/mach-omap2/board-minnow.c index 1efa328aa61..afe71d8809e 100644 --- a/arch/arm/mach-omap2/board-minnow.c +++ b/arch/arm/mach-omap2/board-minnow.c @@ -35,12 +35,6 @@ static const char *omap3_gp_boards_compat[] __initdata = {  	"mot,omap3-minnow",  	NULL,  }; -static void __init minnow_musb_init(void) -{ -	usb_bind_phy("musb-hdrc.0.auto", 0, "tps-usb"); -	usb_bind_phy("musb-hdrc.1.auto", 0, "cpcap_usb"); -	usb_musb_init(NULL); -}  static void __init minnow_init(void)  { @@ -50,7 +44,6 @@ static void __init minnow_init(void)  	omap3_enable_usim_buffer(); /* Needed for GPIOs in USIM block */  	omap_minnow_display_init();  	minnow_cpcap_client_init(); -	minnow_musb_init();  }  MACHINE_START(MINNOW, "minnow") |