diff options
| author | Heikki Krogerus <heikki.krogerus@linux.intel.com> | 2012-02-13 13:24:18 +0200 | 
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2012-02-27 15:41:48 +0200 | 
| commit | b96d3b08365f5a9603f50f3aadca6012f7eaffa1 (patch) | |
| tree | fceda0fed3b03c96353dc8cd21a965ba986e3e09 /drivers/usb/musb/musb_core.c | |
| parent | b1c711d629358576e8896a18e74cd5f4d811d7f7 (diff) | |
| download | olio-linux-3.10-b96d3b08365f5a9603f50f3aadca6012f7eaffa1.tar.xz olio-linux-3.10-b96d3b08365f5a9603f50f3aadca6012f7eaffa1.zip  | |
usb: Convert all users to new usb_phy
Use the new usb_phy_* functions with transceiver
operations instead of the old otg functions.
Includes fixes from Sascha Hauer.
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Pavankumar Kondeti <pkondeti@codeaurora.org>
Acked-by: Li Yang <leoli@freescale.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Reviewed-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/musb_core.c')
| -rw-r--r-- | drivers/usb/musb/musb_core.c | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index f9ecd5ebf26..7e9be74dba4 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -131,9 +131,9 @@ static inline struct musb *dev_to_musb(struct device *dev)  /*-------------------------------------------------------------------------*/  #ifndef CONFIG_BLACKFIN -static int musb_ulpi_read(struct usb_phy *otg, u32 offset) +static int musb_ulpi_read(struct usb_phy *phy, u32 offset)  { -	void __iomem *addr = otg->io_priv; +	void __iomem *addr = phy->io_priv;  	int	i = 0;  	u8	r;  	u8	power; @@ -165,10 +165,9 @@ static int musb_ulpi_read(struct usb_phy *otg, u32 offset)  	return musb_readb(addr, MUSB_ULPI_REG_DATA);  } -static int musb_ulpi_write(struct usb_phy *otg, -		u32 offset, u32 data) +static int musb_ulpi_write(struct usb_phy *phy, u32 offset, u32 data)  { -	void __iomem *addr = otg->io_priv; +	void __iomem *addr = phy->io_priv;  	int	i = 0;  	u8	r = 0;  	u8	power; @@ -200,7 +199,7 @@ static int musb_ulpi_write(struct usb_phy *otg,  #define musb_ulpi_write		NULL  #endif -static struct otg_io_access_ops musb_ulpi_access = { +static struct usb_phy_io_ops musb_ulpi_access = {  	.read = musb_ulpi_read,  	.write = musb_ulpi_write,  };  |