[PATCH 108/205] usb/isp1760: Remove false error printout

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Arvid Brodin <arvid.brodin@xxxxxxxx>

This removes the "qh is 0" printout. qh == NULL if the urb has
been unlinked, so this condition is normal.

Signed-off-by: Arvid Brodin <arvid.brodin@xxxxxxxx>
Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx>
---
 drivers/usb/host/isp1760-hcd.c |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c
index 795345a..ff3b316 100644
--- a/drivers/usb/host/isp1760-hcd.c
+++ b/drivers/usb/host/isp1760-hcd.c
@@ -1021,10 +1021,10 @@ static void do_atl_int(struct usb_hcd *hcd)
 		qtd = priv->atl_ints[slot].qtd;
 		qh = priv->atl_ints[slot].qh;
 
-		if (!qh) {
-			dev_err(hcd->self.controller, "qh is 0\n");
+		/* urb unlinked? */
+		if (!qh)
 			continue;
-		}
+
 		ptd_read(hcd->regs, ATL_PTD_OFFSET, slot, &ptd);
 
 		rl = (ptd.dw2 >> 25) & 0x0f;
@@ -1213,10 +1213,9 @@ static void do_intl_int(struct usb_hcd *hcd)
 		qtd = priv->int_ints[slot].qtd;
 		qh = priv->int_ints[slot].qh;
 
-		if (!qh) {
-			dev_err(hcd->self.controller, "(INT) qh is 0\n");
+		/* urb unlinked? */
+		if (!qh)
 			continue;
-		}
 
 		ptd_read(hcd->regs, INT_PTD_OFFSET, slot, &ptd);
 		check_int_err_status(hcd, ptd.dw4);
-- 
1.7.4.2

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux