Message ID | 1516626688-2302-2-git-send-email-rogerq@ti.com |
---|---|
State | Accepted |
Commit | daaecc6541d014dca073473ec8a4120c0babbeb4 |
Headers | show |
Series | [1/4] usb: dwc3: prevent setting PRTCAP to OTG from debugfs | expand |
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 85388dd..2929b1d 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -119,6 +119,9 @@ static void __dwc3_set_mode(struct work_struct *work) if (dwc->dr_mode != USB_DR_MODE_OTG) return; + if (dwc->desired_dr_role == DWC3_GCTL_PRTCAP_OTG) + return; + switch (dwc->current_dr_role) { case DWC3_GCTL_PRTCAP_HOST: dwc3_host_exit(dwc);
We don't support PRTCAP == OTG so prevent user from setting it via debugfs. Signed-off-by: Roger Quadros <rogerq@ti.com> --- drivers/usb/dwc3/core.c | 3 +++ 1 file changed, 3 insertions(+) -- cheers, -roger Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html