diff options
| author | Warner Losh <imp@FreeBSD.org> | 2007-06-20 05:11:37 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2007-06-20 05:11:37 +0000 |
| commit | 7bd250d818d0c57ec9b4eb56d71396779d65846f (patch) | |
| tree | f18d982a21da66b23b74208f5783342cdc0d587c /sys/dev/usb/usb.c | |
| parent | 1f5d7556615b9deb0eb188a1dad235563b8c751d (diff) | |
Notes
Diffstat (limited to 'sys/dev/usb/usb.c')
| -rw-r--r-- | sys/dev/usb/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c index ee4aa0d1ba8e..6c2da4a5fd85 100644 --- a/sys/dev/usb/usb.c +++ b/sys/dev/usb/usb.c @@ -98,8 +98,8 @@ MALLOC_DEFINE(M_USBHC, "USBHC", "USB host controller"); SYSCTL_NODE(_hw, OID_AUTO, usb, CTLFLAG_RW, 0, "USB debugging"); #ifdef USB_DEBUG -#define DPRINTF(x) if (usbdebug) logprintf x -#define DPRINTFN(n,x) if (usbdebug>(n)) logprintf x +#define DPRINTF(x) if (usbdebug) printf x +#define DPRINTFN(n,x) if (usbdebug>(n)) printf x int usbdebug = 0; SYSCTL_INT(_hw_usb, OID_AUTO, debug, CTLFLAG_RW, &usbdebug, 0, "usb debug level"); |
