summaryrefslogtreecommitdiff
path: root/drivers/usb/otg/ab8500-usb.c
diff options
context:
space:
mode:
authorsupriya karanth <supriya.karanth@stericsson.com>2012-09-14 15:36:23 +0530
committerRajanikanth H.V <rajanikanth.hv@linaro.org>2012-11-09 16:05:44 +0530
commit61456518b473024ca2f0c1cd32823419bee0e3f3 (patch)
treeb902f64c377b98b3ccf388c621a65ee84cef5f8e /drivers/usb/otg/ab8500-usb.c
parentabca344c85e36a2fa24ee1f7c919fa075d50c3e4 (diff)
usb: Fix usb issues during rebootintegration-android-ux500
Added error handling in adb_release. Fixed warning in ab8500 usb due to the phy_disable call when the usb phy wasn't enabled. Signed-off-by: supriya karanth <supriya.karanth@stericsson.com>
Diffstat (limited to 'drivers/usb/otg/ab8500-usb.c')
-rw-r--r--drivers/usb/otg/ab8500-usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/otg/ab8500-usb.c b/drivers/usb/otg/ab8500-usb.c
index d6e83a4d671..d6b71fcfcfe 100644
--- a/drivers/usb/otg/ab8500-usb.c
+++ b/drivers/usb/otg/ab8500-usb.c
@@ -689,7 +689,7 @@ static int ab8500_usb_set_peripheral(struct usb_otg *otg,
* Do not update ab8500 registers directly till this
* is fixed.
*/
- if (!gadget)
+ if (!gadget && ab->mode == USB_PERIPHERAL)
schedule_work(&ab->phy_dis_work);
return 0;
@@ -710,7 +710,7 @@ static int ab8500_usb_set_host(struct usb_otg *otg, struct usb_bus *host)
* Do not update ab8500 registers directly till this
* is fixed.
*/
- if (!host)
+ if (!host && ab->mode == USB_HOST)
schedule_work(&ab->phy_dis_work);
return 0;