Commit b5f5bfe0 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: oxu210hp-hcd.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: Rusty Russell <rusty@rustcorp.com.au>
CC: David Howells <dhowells@redhat.com>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3879e304
...@@ -1399,8 +1399,8 @@ static struct ehci_qh *qh_make(struct oxu_hcd *oxu, ...@@ -1399,8 +1399,8 @@ static struct ehci_qh *qh_make(struct oxu_hcd *oxu,
* But interval 1 scheduling is simpler, and * But interval 1 scheduling is simpler, and
* includes high bandwidth. * includes high bandwidth.
*/ */
dbg("intr period %d uframes, NYET!", oxu_dbg(oxu, "intr period %d uframes, NYET!\n",
urb->interval); urb->interval);
goto done; goto done;
} }
} else { } else {
...@@ -1471,7 +1471,7 @@ static struct ehci_qh *qh_make(struct oxu_hcd *oxu, ...@@ -1471,7 +1471,7 @@ static struct ehci_qh *qh_make(struct oxu_hcd *oxu,
} }
break; break;
default: default:
dbg("bogus dev %p speed %d", urb->dev, urb->dev->speed); oxu_dbg(oxu, "bogus dev %p speed %d\n", urb->dev, urb->dev->speed);
done: done:
qh_put(qh); qh_put(qh);
return NULL; return NULL;
...@@ -2307,7 +2307,7 @@ static void scan_periodic(struct oxu_hcd *oxu) ...@@ -2307,7 +2307,7 @@ static void scan_periodic(struct oxu_hcd *oxu)
qh_put(temp.qh); qh_put(temp.qh);
break; break;
default: default:
dbg("corrupt type %d frame %d shadow %p", oxu_dbg(oxu, "corrupt type %d frame %d shadow %p\n",
type, frame, q.ptr); type, frame, q.ptr);
q.ptr = NULL; q.ptr = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment