summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-02 04:33:35 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-02 04:33:35 (GMT)
commit82491c2a204494494016c6cd7b6f1bee7c3dfb77 (patch)
tree9eab12bf3f308f618798094c7c6675c9d2c4dbdb
parent079d440e103da3ef39b2c8451b66780aa41fd34d (diff)
downloadlinux-82491c2a204494494016c6cd7b6f1bee7c3dfb77.tar.xz
USB: ehci-q.c: remove dbg() usage
dbg() was a very old USB-specific macro that should no longer be used. This patch removes it from being used in the driver and uses dev_dbg() instead. CC: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/host/ehci-q.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c
index 13f4f98..4378bf7 100644
--- a/drivers/usb/host/ehci-q.c
+++ b/drivers/usb/host/ehci-q.c
@@ -943,7 +943,8 @@ qh_make (
}
break;
default:
- dbg ("bogus dev %p speed %d", urb->dev, urb->dev->speed);
+ ehci_dbg(ehci, "bogus dev %p speed %d\n", urb->dev,
+ urb->dev->speed);
done:
qh_put (qh);
return NULL;