diff options
author | Felipe Balbi <balbi@ti.com> | 2014-04-16 22:20:44 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-04-21 21:07:24 +0200 |
commit | 4525beeb9aadbb9e1cb3e9e135f4371553f26a70 (patch) | |
tree | 4c3679819c31984dfa313ee64abaf9f0b6abbb18 /drivers/usb/musb/da8xx.c | |
parent | usb: gadget: only GPL drivers in the gadget and phy framework (diff) | |
download | linux-4525beeb9aadbb9e1cb3e9e135f4371553f26a70.tar.xz linux-4525beeb9aadbb9e1cb3e9e135f4371553f26a70.zip |
usb: phy: rename usb_nop_xceiv to usb_phy_generic
no functional changes, just renaming the function
in order to make it slightly clearer what it should
be used for, also matching the driver name.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/musb/da8xx.c')
-rw-r--r-- | drivers/usb/musb/da8xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c index e3486de71995..bcdce8e64670 100644 --- a/drivers/usb/musb/da8xx.c +++ b/drivers/usb/musb/da8xx.c @@ -418,7 +418,7 @@ static int da8xx_musb_init(struct musb *musb) if (!rev) goto fail; - usb_nop_xceiv_register(); + usb_phy_generic_register(); musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2); if (IS_ERR_OR_NULL(musb->xceiv)) { ret = -EPROBE_DEFER; @@ -453,7 +453,7 @@ static int da8xx_musb_exit(struct musb *musb) phy_off(); usb_put_phy(musb->xceiv); - usb_nop_xceiv_unregister(); + usb_phy_generic_unregister(); return 0; } |