diff options
author | Felipe Balbi <felipe.balbi@linux.intel.com> | 2018-08-15 07:34:44 +0200 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2018-11-26 08:14:03 +0100 |
commit | 3451f6affaef8c2a0a7a6a5960b86eac9d2ff2f7 (patch) | |
tree | cfc70df74ffb2ad12883d614e096ae6737cce2d0 | |
parent | usb: dwc3: trace: log ep commands in hex (diff) | |
download | linux-3451f6affaef8c2a0a7a6a5960b86eac9d2ff2f7.tar.xz linux-3451f6affaef8c2a0a7a6a5960b86eac9d2ff2f7.zip |
usb: dwc3: gadget: remove unnecessary dev_info()
Running out of requests on isochronous endpoints is part of normal
operation. We don't really need to know about it every time it
happens.
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
-rw-r--r-- | drivers/usb/dwc3/gadget.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 7e0f8ff5946d..e94971a7f468 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -1386,8 +1386,6 @@ static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep) struct dwc3 *dwc = dep->dwc; if (list_empty(&dep->pending_list)) { - dev_info(dep->dwc->dev, "%s: ran out of requests\n", - dep->name); dep->flags |= DWC3_EP_PENDING_REQUEST; return -EAGAIN; } |