aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2014-02-14 11:18:10 +0530
committerTushar Behera <tushar.behera@linaro.org>2014-02-14 11:34:57 +0530
commit3b151cac96ef07069bb17114d1fc4cb908eadc5c (patch)
tree3e60088aa67315c67eb2060d439a1df3e2329fc4
parentd9a734a79abc976209f8f07d33e3642b4a420ec4 (diff)
ehci-hcd: Make the verbose error message as debug messagesamsung-lt-arndale_octa-2014.02-1
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--drivers/usb/host/ehci-hcd.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index 2a82a2912..ae44de3d4 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -398,9 +398,8 @@ ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
ALIGN((uint32_t)buffer + length, ARCH_DMA_MINALIGN));
/* Check that the TD processing happened */
- if (token & 0x80) {
- printf("EHCI timed out on TD - token=%#x\n", token);
- }
+ if (token & 0x80)
+ debug("EHCI timed out on TD - token=%#x\n", token);
/* Disable async schedule. */
cmd = ehci_readl(&hcor->or_usbcmd);