diff options
author | Johan Hovold <jhovold@gmail.com> | 2011-03-22 11:12:16 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-13 16:18:28 -0700 |
commit | 4fa4626cd43679dc62a73ee3e347665e761abc9c (patch) | |
tree | a6b264bbc5d9db144e419de96a8c5f06898123c6 | |
parent | a5cc7ef92f69a88a1984cc3e09f6c19656efeb2e (diff) | |
download | op-kernel-dev-4fa4626cd43679dc62a73ee3e347665e761abc9c.zip op-kernel-dev-4fa4626cd43679dc62a73ee3e347665e761abc9c.tar.gz |
USB: cdc-acm: clean up verbose debug
Clean up use of verbose debug.
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/usb/class/cdc-acm.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index fee7d8b..44a5291 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -94,12 +94,6 @@ static DEFINE_MUTEX(open_mutex); static const struct tty_port_operations acm_port_ops = { }; -#ifdef VERBOSE_DEBUG -#define verbose 1 -#else -#define verbose 0 -#endif - /* * Functions for ACM control messages. */ @@ -528,9 +522,8 @@ static void acm_write_bulk(struct urb *urb) struct acm *acm = wb->instance; unsigned long flags; - if (verbose || urb->status - || (urb->actual_length != urb->transfer_buffer_length)) - dev_dbg(&acm->data->dev, "%s - len %d/%d, status %d\n", + if (urb->status || (urb->actual_length != urb->transfer_buffer_length)) + dev_vdbg(&acm->data->dev, "%s - len %d/%d, status %d\n", __func__, urb->actual_length, urb->transfer_buffer_length, |