diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2013-02-06 18:58:50 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-02-06 11:40:14 -0800 |
commit | 51482be9dcfdd0e46aa3b3b3775efe7044c94f38 (patch) | |
tree | 2da31fb27ce0b891e713598aa370b32fb6502739 /arch/arm/mach-omap2/board-3430sdp.c | |
parent | fa1dfe4abe7f3e1d28ee80753acd9a8a87dbacd7 (diff) | |
download | kernel_goldelico_gta04-51482be9dcfdd0e46aa3b3b3775efe7044c94f38.zip kernel_goldelico_gta04-51482be9dcfdd0e46aa3b3b3775efe7044c94f38.tar.gz kernel_goldelico_gta04-51482be9dcfdd0e46aa3b3b3775efe7044c94f38.tar.bz2 |
ARM: OMAP: USB: Add phy binding information
This is w.r.t the changes in PHY library to support adding and getting
multiple PHYs of the same type. In the new design, the
binding information between the PHY and the USB controller should be
specified in the platform specific initialization code. So it's been
done here for OMAP platforms.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/arm/mach-omap2/board-3430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-3430sdp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-3430sdp.c b/arch/arm/mach-omap2/board-3430sdp.c index bb73afc..8a2e242 100644 --- a/arch/arm/mach-omap2/board-3430sdp.c +++ b/arch/arm/mach-omap2/board-3430sdp.c @@ -25,6 +25,7 @@ #include <linux/gpio.h> #include <linux/mmc/host.h> #include <linux/platform_data/spi-omap2-mcspi.h> +#include <linux/usb/phy.h> #include <asm/mach-types.h> #include <asm/mach/arch.h> @@ -579,6 +580,7 @@ static void __init omap_3430sdp_init(void) omap_ads7846_init(1, gpio_pendown, 310, NULL); omap_serial_init(); omap_sdrc_init(hyb18m512160af6_sdrc_params, NULL); + usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb"); usb_musb_init(NULL); board_smc91x_init(); board_flash_init(sdp_flash_partitions, chip_sel_3430, 0); |