diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-14 10:33:19 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-14 10:33:19 +0000 |
commit | d70a9c32c4328490ae2803ae9d24cb5d55c0c2b5 (patch) | |
tree | 9041dba4e75baa4c70a4fcd2ab5985415b05bc22 /sys/dev/usb/if_rum.c | |
parent | bf9fea1ef430c2aec95febe04dae3c57ec1698bc (diff) |
Disable default debug setting now rum works.
Diffstat (limited to 'sys/dev/usb/if_rum.c')
-rw-r--r-- | sys/dev/usb/if_rum.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/usb/if_rum.c b/sys/dev/usb/if_rum.c index c64f9447649..a21eafd785d 100644 --- a/sys/dev/usb/if_rum.c +++ b/sys/dev/usb/if_rum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rum.c,v 1.28 2006/08/10 07:44:04 damien Exp $ */ +/* $OpenBSD: if_rum.c,v 1.29 2006/08/14 10:33:18 jsg Exp $ */ /*- * Copyright (c) 2005, 2006 Damien Bergamini <damien.bergamini@free.fr> @@ -67,12 +67,10 @@ #include <dev/usb/if_rumreg.h> #include <dev/usb/if_rumvar.h> -#define RUM_DEBUG - #ifdef RUM_DEBUG #define DPRINTF(x) do { if (rum_debug) logprintf x; } while (0) #define DPRINTFN(n, x) do { if (rum_debug >= (n)) logprintf x; } while (0) -int rum_debug = 1; +int rum_debug = 0; #else #define DPRINTF(x) #define DPRINTFN(n, x) |