diff options
author | 2014-03-07 18:39:02 +0000 | |
---|---|---|
committer | 2014-03-07 18:39:02 +0000 | |
commit | ae3430049b9b66066342f4653bf029f33604cb5a (patch) | |
tree | ddc586f4a55dccfc9bef71477b0c8255a67529e3 /sys/dev/usb/uts.c | |
parent | In roff_cond_sub(), make sure that the incorrect input sequence `\\}', (diff) | |
download | wireguard-openbsd-ae3430049b9b66066342f4653bf029f33604cb5a.tar.xz wireguard-openbsd-ae3430049b9b66066342f4653bf029f33604cb5a.zip |
Do not define per-driver DEBUG variable when USB_DEBUG is defined. It's
really impossible to debug the USB stack when any single device you plug
in your machine starts to vomit its own poetry,
Diffstat (limited to 'sys/dev/usb/uts.c')
-rw-r--r-- | sys/dev/usb/uts.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/usb/uts.c b/sys/dev/usb/uts.c index 7b2c2efa0fe..4c1fd0fc20f 100644 --- a/sys/dev/usb/uts.c +++ b/sys/dev/usb/uts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uts.c,v 1.32 2013/11/07 10:33:43 pirofti Exp $ */ +/* $OpenBSD: uts.c,v 1.33 2014/03/07 18:39:02 mpi Exp $ */ /* * Copyright (c) 2007 Robert Nagy <robert@openbsd.org> @@ -39,10 +39,6 @@ #include <dev/wscons/wsconsio.h> #include <dev/wscons/wsmousevar.h> -#ifdef USB_DEBUG -#define UTS_DEBUG -#endif - #ifdef UTS_DEBUG #define DPRINTF(x) do { printf x; } while (0) #else |