diff options
Diffstat (limited to 'sys/dev/usb/ehci.c')
-rw-r--r-- | sys/dev/usb/ehci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index 89db953..2ce95e6 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -92,8 +92,8 @@ __FBSDID("$FreeBSD$"); #ifdef USB_DEBUG #define EHCI_DEBUG USB_DEBUG -#define DPRINTF(x) do { if (ehcidebug) logprintf x; } while (0) -#define DPRINTFN(n,x) do { if (ehcidebug>(n)) logprintf x; } while (0) +#define DPRINTF(x) do { if (ehcidebug) printf x; } while (0) +#define DPRINTFN(n,x) do { if (ehcidebug>(n)) printf x; } while (0) int ehcidebug = 0; SYSCTL_NODE(_hw_usb, OID_AUTO, ehci, CTLFLAG_RW, 0, "USB ehci"); SYSCTL_INT(_hw_usb_ehci, OID_AUTO, debug, CTLFLAG_RW, |