0148-dcw_otg-Make-trimming-messages-less-noisy.patch 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. From 585b22b783df4649751b4ce40074b77ad0cc959b Mon Sep 17 00:00:00 2001
  2. From: popcornmix <popcornmix@gmail.com>
  3. Date: Wed, 17 Feb 2016 19:02:31 +0000
  4. Subject: [PATCH 148/381] dcw_otg: Make trimming messages less noisy
  5. ---
  6. drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c | 6 ++++--
  7. 1 file changed, 4 insertions(+), 2 deletions(-)
  8. --- a/drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c
  9. +++ b/drivers/usb/host/dwc_otg/dwc_otg_hcd_intr.c
  10. @@ -738,7 +738,8 @@ static int update_urb_state_xfer_comp(dw
  11. &short_read);
  12. if (urb->actual_length + xfer_length > urb->length) {
  13. - DWC_WARN("%s(): trimming xfer length\n", __func__);
  14. + printk_once(KERN_DEBUG "dwc_otg: DEVICE:%03d : %s:%d:trimming xfer length\n",
  15. + hc->dev_addr, __func__, __LINE__);
  16. xfer_length = urb->length - urb->actual_length;
  17. }
  18. @@ -1430,7 +1431,8 @@ static void update_urb_state_xfer_intr(d
  19. halt_status, NULL);
  20. if (urb->actual_length + bytes_transferred > urb->length) {
  21. - DWC_WARN("%s(): trimming xfer length\n", __func__);
  22. + printk_once(KERN_DEBUG "dwc_otg: DEVICE:%03d : %s:%d:trimming xfer length\n",
  23. + hc->dev_addr, __func__, __LINE__);
  24. bytes_transferred = urb->length - urb->actual_length;
  25. }