diff options
| author | Marek Vasut <[email protected]> | 2020-05-21 23:32:23 +0200 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2020-05-29 19:18:55 +0200 |
| commit | 10bcafb8ace549e7e93afa335212a8e9072c5d0c (patch) | |
| tree | ea4b3ca57dab6658f612d3583017587c04264fe7 /drivers | |
| parent | 3da0291ba9b4a429ed9226569c9014f5c7e13ac3 (diff) | |
usb: ehci-mx6: Handle fixed regulators correctly
The regulator-fixed would return -ENOSYS when enabled/disabled,
because this operation is not supported, but this is not an error
e.g. on systems where the VBUS cannot be controlled, so if this
is the error code reported by the regulator core, consider it a
success and continue.
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/host/ehci-mx6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c index 24f8ad7af84..470eddd0c9e 100644 --- a/drivers/usb/host/ehci-mx6.c +++ b/drivers/usb/host/ehci-mx6.c @@ -447,7 +447,7 @@ static int mx6_init_after_reset(struct ehci_ctrl *dev) ret = regulator_set_enable(priv->vbus_supply, (type == USB_INIT_DEVICE) ? false : true); - if (ret) { + if (ret && ret != -ENOSYS) { puts("Error enabling VBUS supply\n"); return ret; } @@ -614,7 +614,7 @@ static int ehci_usb_probe(struct udevice *dev) ret = regulator_set_enable(priv->vbus_supply, (type == USB_INIT_DEVICE) ? false : true); - if (ret) { + if (ret && ret != -ENOSYS) { puts("Error enabling VBUS supply\n"); return ret; } |
