diff options
author | Felipe Balbi <felipe.balbi@nokia.com> | 2009-08-28 14:24:15 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-08-28 14:24:15 -0400 |
commit | bd04e46558380aaba0caab6325c07a3c6bf27706 (patch) | |
tree | eb6a7b3f4e0d4658de12a68e107740e0dfa35600 /arch/arm/mach-omap2/board-omap3beagle.c | |
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>
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3beagle.c')
-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 = { | |||
245 | .consumer_supplies = &beagle_vdvi_supply, | 245 | .consumer_supplies = &beagle_vdvi_supply, |
246 | }; | 246 | }; |
247 | 247 | ||
248 | static struct twl4030_usb_data beagle_usb_data = { | ||
249 | .usb_mode = T2_USB_MODE_ULPI, | ||
250 | }; | ||
251 | |||
248 | static struct twl4030_platform_data beagle_twldata = { | 252 | static struct twl4030_platform_data beagle_twldata = { |
249 | .irq_base = TWL4030_IRQ_BASE, | 253 | .irq_base = TWL4030_IRQ_BASE, |
250 | .irq_end = TWL4030_IRQ_END, | 254 | .irq_end = TWL4030_IRQ_END, |
251 | 255 | ||
252 | /* platform_data for children goes here */ | 256 | /* platform_data for children goes here */ |
257 | .usb = &beagle_usb_data, | ||
253 | .gpio = &beagle_gpio_data, | 258 | .gpio = &beagle_gpio_data, |
254 | .vmmc1 = &beagle_vmmc1, | 259 | .vmmc1 = &beagle_vmmc1, |
255 | .vsim = &beagle_vsim, | 260 | .vsim = &beagle_vsim, |