diff options
author | Mugunthan V N <mugunthanvnm@ti.com> | 2016-11-17 14:38:10 +0530 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-12-02 21:04:48 -0700 |
commit | 1cac34ce161ae010d3f9ffd3f664e70206638ebc (patch) | |
tree | b4e97524e55215380ee0e0f5c17635e27d523d52 /arch/arm/mach-omap2/omap3/am35x_musb.c | |
parent | 3aec2648698d9be14ab8b3eeb7d4d7d3783379ac (diff) | |
download | u-boot-1cac34ce161ae010d3f9ffd3f664e70206638ebc.tar.gz u-boot-1cac34ce161ae010d3f9ffd3f664e70206638ebc.tar.xz u-boot-1cac34ce161ae010d3f9ffd3f664e70206638ebc.zip |
drivers: usb: musb: adopt musb backend driver to driver model
Currently all backend driver ops uses hard coded physical
address, so to adopt the driver to DM, add device pointer to ops
call backs so that drivers can get physical addresses from the
usb driver priv/plat data.
Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap3/am35x_musb.c')
-rw-r--r-- | arch/arm/mach-omap2/omap3/am35x_musb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/omap3/am35x_musb.c b/arch/arm/mach-omap2/omap3/am35x_musb.c index 74dd105eb6..d542699ab0 100644 --- a/arch/arm/mach-omap2/omap3/am35x_musb.c +++ b/arch/arm/mach-omap2/omap3/am35x_musb.c @@ -13,7 +13,7 @@ #include <asm/io.h> #include <asm/arch/am35x_def.h> -void am35x_musb_reset(void) +void am35x_musb_reset(struct udevice *dev) { /* Reset the musb interface */ clrsetbits_le32(&am35x_scm_general_regs->ip_sw_reset, @@ -22,7 +22,7 @@ void am35x_musb_reset(void) USBOTGSS_SW_RST, 0); } -void am35x_musb_phy_power(u8 on) +void am35x_musb_phy_power(struct udevice *dev, u8 on) { unsigned long start = get_timer(0); @@ -53,7 +53,7 @@ void am35x_musb_phy_power(u8 on) } } -void am35x_musb_clear_irq(void) +void am35x_musb_clear_irq(struct udevice *dev) { clrsetbits_le32(&am35x_scm_general_regs->lvl_intr_clr, 0, USBOTGSS_INT_CLR); |