From: Ming Lei <tom.leiming@xxxxxxxxx> This patch defines twl4030_usb_data as platform_data, which can be passed to twl4030 mfd driver to build twl4030_usb device. Without twl4030_usb device, we can not use musb on beagle board. Signed-off-by: Ming Lei <tom.leiming@xxxxxxxxx> --- arch/arm/mach-omap2/board-omap3beagle.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 991ac9c..b8c1ae9 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -249,6 +249,9 @@ static struct regulator_init_data beagle_vpll2 = { .consumer_supplies = &beagle_vdvi_supply, }; +static struct twl4030_usb_data beagle_usb = { + .usb_mode = T2_USB_MODE_ULPI, +}; static struct twl4030_platform_data beagle_twldata = { .irq_base = TWL4030_IRQ_BASE, .irq_end = TWL4030_IRQ_END, @@ -259,6 +262,7 @@ static struct twl4030_platform_data beagle_twldata = { .vsim = &beagle_vsim, .vdac = &beagle_vdac, .vpll2 = &beagle_vpll2, + .usb = &beagle_usb, }; static struct i2c_board_info __initdata beagle_i2c_boardinfo[] = { -- 1.6.0.GIT -- To unsubscribe from this list: send the line "unsubscribe linux-embedded" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html