summaryrefslogtreecommitdiff
path: root/drivers/usb
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/chipidea/ci.h6
-rw-r--r--drivers/usb/phy/phy-mxs-usb.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/chipidea/ci.h b/drivers/usb/chipidea/ci.h
index fed2a6ffb77b..4c2dd28423b9 100644
--- a/drivers/usb/chipidea/ci.h
+++ b/drivers/usb/chipidea/ci.h
@@ -311,10 +311,10 @@ static inline int ci_role_start(struct ci_hdrc *ci, enum ci_role role)
if (ci->usb_phy) {
if (role == CI_ROLE_HOST)
usb_phy_set_mode(ci->usb_phy,
- USB_MODE_HOST);
+ USB_CURRENT_MODE_HOST);
else
usb_phy_set_mode(ci->usb_phy,
- USB_MODE_DEVICE);
+ USB_CURRENT_MODE_DEVICE);
}
return 0;
@@ -332,7 +332,7 @@ static inline void ci_role_stop(struct ci_hdrc *ci)
ci->roles[role]->stop(ci);
if (ci->usb_phy)
- usb_phy_set_mode(ci->usb_phy, USB_MODE_NONE);
+ usb_phy_set_mode(ci->usb_phy, USB_CURRENT_MODE_NONE);
}
/**
diff --git a/drivers/usb/phy/phy-mxs-usb.c b/drivers/usb/phy/phy-mxs-usb.c
index 18e256ad7ed6..ba8f0866e2fc 100644
--- a/drivers/usb/phy/phy-mxs-usb.c
+++ b/drivers/usb/phy/phy-mxs-usb.c
@@ -484,7 +484,7 @@ static void mxs_phy_disconnect_line(struct mxs_phy *mxs_phy, bool on)
vbus_is_on = mxs_phy_get_vbus_status(mxs_phy);
- if (on && ((!vbus_is_on && mxs_phy->mode != USB_MODE_HOST) ||
+ if (on && ((!vbus_is_on && mxs_phy->mode != USB_CURRENT_MODE_HOST) ||
(last_event == USB_EVENT_VBUS)))
__mxs_phy_disconnect_line(mxs_phy, true);
else