diff options
author | Hema Kalliguddi <hemahk@ti.com> | 2010-09-22 19:27:40 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2010-12-01 10:56:33 +0200 |
commit | ea65df57c2eea803535a071752efb030c46a11f5 (patch) | |
tree | 33284e6cc39a6d6b76528089c92b6cc103246cc6 /drivers/usb/musb/omap2430.c | |
parent | 0ae86689d88bebba16c2db899f845446578d53b3 (diff) | |
download | blackbird-op-linux-ea65df57c2eea803535a071752efb030c46a11f5.tar.gz blackbird-op-linux-ea65df57c2eea803535a071752efb030c46a11f5.zip |
usb: musb: remove board_data parameter from musb_platform_init()
Removed the board_data parameter being
passed to musb_platform_init function
as board_data can be extracted from
device structure which is already member
of musb structure.
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Hema HK <hemahk@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/omap2430.c')
-rw-r--r-- | drivers/usb/musb/omap2430.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index ed618bde1eec..27dabcf0a868 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -187,10 +187,12 @@ int musb_platform_set_mode(struct musb *musb, u8 musb_mode) return 0; } -int __init musb_platform_init(struct musb *musb, void *board_data) +int __init musb_platform_init(struct musb *musb) { u32 l; - struct omap_musb_board_data *data = board_data; + struct device *dev = musb->controller; + struct musb_hdrc_platform_data *plat = dev->platform_data; + struct omap_musb_board_data *data = plat->board_data; /* We require some kind of external transceiver, hooked * up through ULPI. TWL4030-family PMICs include one, |