diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-03-07 14:19:57 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-03-07 10:03:24 -0600 |
commit | 73a30bfc0d526db899033165db6f95c427e70505 (patch) | |
tree | 52f7162fb4aa470db1591e81fb67c78c032b90d9 /drivers/usb/dwc3/gadget.c | |
parent | d95faaec4763b94c9eedac9a1f933753015651ed (diff) | |
download | linux-stable-73a30bfc0d526db899033165db6f95c427e70505.tar.gz linux-stable-73a30bfc0d526db899033165db6f95c427e70505.tar.bz2 linux-stable-73a30bfc0d526db899033165db6f95c427e70505.zip |
usb: dwc3: gadget: cut and paste fixups in suspend/resume
These were cut and paste from the ->disconnect function.
Fixes commit 30d577b9bcc4 ('usb: dwc3: gadget: call gadget driver's
->suspend/->resume')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/gadget.c')
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 1730cd0928c5..4af75d0e53dc 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -2047,7 +2047,7 @@ static void dwc3_disconnect_gadget(struct dwc3 *dwc) static void dwc3_suspend_gadget(struct dwc3 *dwc) { - if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { + if (dwc->gadget_driver && dwc->gadget_driver->suspend) { spin_unlock(&dwc->lock); dwc->gadget_driver->suspend(&dwc->gadget); spin_lock(&dwc->lock); @@ -2056,7 +2056,7 @@ static void dwc3_suspend_gadget(struct dwc3 *dwc) static void dwc3_resume_gadget(struct dwc3 *dwc) { - if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { + if (dwc->gadget_driver && dwc->gadget_driver->resume) { spin_unlock(&dwc->lock); dwc->gadget_driver->resume(&dwc->gadget); spin_lock(&dwc->lock); |