Commit 9618d093 authored by Michael Trimarchi's avatar Michael Trimarchi Committed by Greg Kroah-Hartman

usb: chipidea: usbmisc: evdo is only specific to OTG port

The USB_PHY_CTRL_FUNC is used specific for OTG port as described
in user manual. EVDO need to be set only for index 0 that
correspond to OTG port
Signed-off-by: default avatarMichael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1ca50331
...@@ -148,6 +148,9 @@ static int usbmisc_imx25_post(struct imx_usbmisc_data *data) ...@@ -148,6 +148,9 @@ static int usbmisc_imx25_post(struct imx_usbmisc_data *data)
if (data->index > 2) if (data->index > 2)
return -EINVAL; return -EINVAL;
if (data->index)
return 0;
if (data->evdo) { if (data->evdo) {
spin_lock_irqsave(&usbmisc->lock, flags); spin_lock_irqsave(&usbmisc->lock, flags);
reg = usbmisc->base + MX25_USB_PHY_CTRL_OFFSET; reg = usbmisc->base + MX25_USB_PHY_CTRL_OFFSET;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment