Commit e5452dd4cb93b04b704eb6d4e7623178715f17ce

Authored by Greg Kroah-Hartman

Merge tag 'fixes-for-v3.18-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git…

…/balbi/usb into usb-linus

Felipe writes:

usb: fixes for v3.18-rc4

A single fix this for dwc2 this time. Because of
excessive debugging messages, dwc2 would sometimes
fail enumeration. The fix is simple, just converting
a dev_info() into dev_dbg().

Signed-off-by: Felipe Balbi <balbi@ti.com>

Showing 1 changed file Side-by-side Diff

drivers/usb/dwc2/gadget.c
... ... @@ -2327,7 +2327,7 @@
2327 2327  
2328 2328 u32 usb_status = readl(hsotg->regs + GOTGCTL);
2329 2329  
2330   - dev_info(hsotg->dev, "%s: USBRst\n", __func__);
  2330 + dev_dbg(hsotg->dev, "%s: USBRst\n", __func__);
2331 2331 dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n",
2332 2332 readl(hsotg->regs + GNPTXSTS));
2333 2333