aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/host/isp1760-hcd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c
index 13f7d1200bc0..dbcafa29c775 100644
--- a/drivers/usb/host/isp1760-hcd.c
+++ b/drivers/usb/host/isp1760-hcd.c
@@ -713,12 +713,11 @@ static int check_error(struct ptd *ptd)
713 u32 dw3; 713 u32 dw3;
714 714
715 dw3 = le32_to_cpu(ptd->dw3); 715 dw3 = le32_to_cpu(ptd->dw3);
716 if (dw3 & DW3_HALT_BIT) 716 if (dw3 & DW3_HALT_BIT) {
717 error = -EPIPE; 717 error = -EPIPE;
718 718
719 if (dw3 & DW3_ERROR_BIT) { 719 if (dw3 & DW3_ERROR_BIT)
720 printk(KERN_ERR "error bit is set in DW3\n"); 720 pr_err("error bit is set in DW3\n");
721 error = -EPIPE;
722 } 721 }
723 722
724 if (dw3 & DW3_QTD_ACTIVE) { 723 if (dw3 & DW3_QTD_ACTIVE) {