diff options
author | Xenia Ragiadakou <burzalodowa@gmail.com> | 2013-08-29 11:45:10 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-30 12:02:07 -0700 |
commit | fea26ef095cc74f1e11c046a7bf4a29160f8ffb3 (patch) | |
tree | 97b632bde8ced40413e96ad567a169acd6d85260 /drivers/usb/host/ehci-q.c | |
parent | 2eb86032a1f6743072e52b651c9439fd4ab93573 (diff) | |
download | op-kernel-dev-fea26ef095cc74f1e11c046a7bf4a29160f8ffb3.zip op-kernel-dev-fea26ef095cc74f1e11c046a7bf4a29160f8ffb3.tar.gz |
ehci: remove ehci_vdbg() verbose debugging statements
This patch removes ehci_vdbg debugging statements from EHCI host controller
driver because they produce too much information, lowering the signal to noise
ratio when debugging, and because they are not used anymore.
Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-q.c')
-rw-r--r-- | drivers/usb/host/ehci-q.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c index 3333687..cf9f2fb 100644 --- a/drivers/usb/host/ehci-q.c +++ b/drivers/usb/host/ehci-q.c @@ -240,13 +240,6 @@ static int qtd_copy_status ( } else { /* unknown */ status = -EPROTO; } - - ehci_vdbg (ehci, - "dev%d ep%d%s qtd token %08x --> status %d\n", - usb_pipedevice (urb->pipe), - usb_pipeendpoint (urb->pipe), - usb_pipein (urb->pipe) ? "in" : "out", - token, status); } return status; |