diff options
author | Felipe Balbi <felipe.balbi@nokia.com> | 2009-08-28 11:24:15 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-08-28 11:24:15 -0700 |
commit | bd04e46558380aaba0caab6325c07a3c6bf27706 (patch) | |
tree | eb6a7b3f4e0d4658de12a68e107740e0dfa35600 | |
parent | 1eab46a2ea36deda9621ae507319812bb1f82f92 (diff) |
OMAP3: beagle: add missing twl4030 usb platform_data
without it twl4030_usb driver will not probe.
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 201360781ac1..d79ea8da6270 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -245,11 +245,16 @@ static struct regulator_init_data beagle_vpll2 = { .consumer_supplies = &beagle_vdvi_supply, }; +static struct twl4030_usb_data beagle_usb_data = { + .usb_mode = T2_USB_MODE_ULPI, +}; + static struct twl4030_platform_data beagle_twldata = { .irq_base = TWL4030_IRQ_BASE, .irq_end = TWL4030_IRQ_END, /* platform_data for children goes here */ + .usb = &beagle_usb_data, .gpio = &beagle_gpio_data, .vmmc1 = &beagle_vmmc1, .vsim = &beagle_vsim, |