diff options
author | Alexandre Pereira da Silva <aletes.xgr@gmail.com> | 2012-10-15 09:47:36 -0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-10-16 13:10:02 +0300 |
commit | 0696f92970abeb5586eb11cabd2a41909b4dee71 (patch) | |
tree | 4c106d7999c72934634aff203750a636c1c35191 | |
parent | 4cd2f5998757a41038deb55a0cb8319bdf67575a (diff) | |
download | blackbird-obmc-linux-0696f92970abeb5586eb11cabd2a41909b4dee71.tar.gz blackbird-obmc-linux-0696f92970abeb5586eb11cabd2a41909b4dee71.zip |
usb: gadget: lpc32xx_udc: Disable setup request error
This message is an debugging message. It's useful for finding protocol
details but it's not necessarily an error.
Acked-by: Roland Stigge <stigge@antcom.de>
Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/gadget/lpc32xx_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/lpc32xx_udc.c b/drivers/usb/gadget/lpc32xx_udc.c index f696fb9b136d..ba18b479d9f9 100644 --- a/drivers/usb/gadget/lpc32xx_udc.c +++ b/drivers/usb/gadget/lpc32xx_udc.c @@ -2399,7 +2399,7 @@ static void udc_handle_ep0_setup(struct lpc32xx_udc *udc) if (i < 0) { /* setup processing failed, force stall */ - dev_err(udc->dev, + dev_dbg(udc->dev, "req %02x.%02x protocol STALL; stat %d\n", reqtype, req, i); udc->ep0state = WAIT_FOR_SETUP; |