From: Greg Kroah-Hartman Date: Wed, 2 May 2012 04:33:35 +0000 (-0700) Subject: USB: ehci-q.c: remove dbg() usage X-Git-Tag: v3.5-rc1~149^2~213 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=82491c2a204494494016c6cd7b6f1bee7c3dfb77;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git 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 Signed-off-by: Greg Kroah-Hartman --- 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;