
Hi Marek,
On 09/28/2014 01:28 PM, Marek Vasut wrote:
On Sunday, September 28, 2014 at 09:12:35 PM, Eric Nelson wrote:
Signed-off-by: Eric Nelson eric.nelson@boundarydevices.com
drivers/usb/gadget/ci_udc.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/drivers/usb/gadget/ci_udc.c b/drivers/usb/gadget/ci_udc.c index 2572b34..9f2fd15 100644 --- a/drivers/usb/gadget/ci_udc.c +++ b/drivers/usb/gadget/ci_udc.c @@ -777,6 +777,11 @@ static int ci_pullup(struct usb_gadget *gadget, int is_on) /* select DEVICE mode */ writel(USBMODE_DEVICE, &udc->usbmode);
+#if !defined(CONFIG_USB_GADGET_DUALSPEED) && defined(CONFIG_MX6)
/* force full-speed mode */
writel(readl(&udc->portsc)|(1<<24), &udc->portsc);
+#endif
setbits_le32() and I'm sure you know better than to use 1 << 24 . Please define that bit proper.
Yep. Will do.
And you also know you should supply a commit message, right ?
I'll give it another shot in V2.
writel(0xffffffff, &udc->epflush); /* Turn on the USB connection by enabling the pullup resistor */
Regards,
Eric