Commit 252455c4 authored by Suresh Gupta's avatar Suresh Gupta Committed by Felipe Balbi
Browse files

usb: gadget: fsl driver pullup fix



This fix the fsl usb gadget driver in a way that the usb device
will be only "pulled up" on requests only when vbus is powered

Signed-off-by: default avatarSuresh Gupta <suresh.gupta@freescale.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 97839ca4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1219,6 +1219,10 @@ static int fsl_pullup(struct usb_gadget *gadget, int is_on)
	struct fsl_udc *udc;

	udc = container_of(gadget, struct fsl_udc, gadget);

	if (!udc->vbus_active)
		return -EOPNOTSUPP;

	udc->softconnect = (is_on != 0);
	if (can_pullup(udc))
		fsl_writel((fsl_readl(&dr_regs->usbcmd) | USB_CMD_RUN_STOP),