diff options
author | Oliver Neukum <oneukum@suse.de> | 2013-11-18 13:22:57 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-03 10:25:22 -0800 |
commit | 5c2a18014f906d81ae83484801831650f0fa07fe (patch) | |
tree | 072eec69353f001f43032f9351b79077419b5cc2 /drivers/usb/host/ohci-q.c | |
parent | 8fdbeb26b5105282e55559b54a660fe7b6eed331 (diff) | |
download | op-kernel-dev-5c2a18014f906d81ae83484801831650f0fa07fe.zip op-kernel-dev-5c2a18014f906d81ae83484801831650f0fa07fe.tar.gz |
ohci: remove conditional compilation
Conditional compilation for debugging is removed in favor of
dynamic debugging. To do so
1. the support for debugfs is always compiled
2. the support for the ancient print_urb debugging aid is removed
Signed-off-by: Oliver Neukum <oneukum@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ohci-q.c')
-rw-r--r-- | drivers/usb/host/ohci-q.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/host/ohci-q.c b/drivers/usb/host/ohci-q.c index e7f577e..182eaa2 100644 --- a/drivers/usb/host/ohci-q.c +++ b/drivers/usb/host/ohci-q.c @@ -68,10 +68,6 @@ __acquires(ohci->lock) break; } -#ifdef OHCI_VERBOSE_DEBUG - urb_print(urb, "RET", usb_pipeout (urb->pipe), status); -#endif - /* urb->complete() can reenter this HCD */ usb_hcd_unlink_urb_from_ep(ohci_to_hcd(ohci), urb); spin_unlock (&ohci->lock); |