diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-05-25 21:00:18 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2008-05-25 21:00:18 +0000 |
commit | 7e059c8da10aacfede318108826e90121e3a93e4 (patch) | |
tree | 49742580d4317ddab9b288a3f28f8fb7b3eb6145 /sys/dev/usb/ehci.c | |
parent | 5d832609e1ae9b04736861833f28edbdf6a523e5 (diff) |
Don't define EHCI_DEBUG when USB_DEBUG is defined. This to be consistent
with other USB host controller interfaces.
From Karl Sjodahl <dunceor@gmail.com>; ok jsg
Diffstat (limited to 'sys/dev/usb/ehci.c')
-rw-r--r-- | sys/dev/usb/ehci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index 0b8dbe29f0f..63e2b44a8a7 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci.c,v 1.79 2008/05/15 08:10:03 kettenis Exp $ */ +/* $OpenBSD: ehci.c,v 1.80 2008/05/25 21:00:17 mbalmer Exp $ */ /* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */ /* @@ -88,10 +88,6 @@ struct cfdriver ehci_cd = { NULL, "ehci", DV_DULL }; -#ifdef USB_DEBUG -#define EHCI_DEBUG -#endif - #ifdef EHCI_DEBUG #define DPRINTF(x) do { if (ehcidebug) printf x; } while(0) #define DPRINTFN(n,x) do { if (ehcidebug>(n)) printf x; } while (0) |