diff options
Diffstat (limited to 'sys/dev/usb')
-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) |