diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-09-15 05:47:54 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2007-09-15 05:47:54 +0000 |
commit | 2989145c397ef14ab514c1dbb8b947c0ba9030a0 (patch) | |
tree | 670dc5f8b8638cdb4d70fbb8e54254b0a5fac8e6 | |
parent | 70e36d86bef90ec7f7f252be5c65b9de284d6646 (diff) |
define BWI_DEBUG to make things easier
-rw-r--r-- | sys/dev/ic/bwi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/bwi.c b/sys/dev/ic/bwi.c index 59d01456c18..41b679661e6 100644 --- a/sys/dev/ic/bwi.c +++ b/sys/dev/ic/bwi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bwi.c,v 1.14 2007/09/14 20:26:04 mglocker Exp $ */ +/* $OpenBSD: bwi.c,v 1.15 2007/09/15 05:47:53 jsg Exp $ */ /* * Copyright (c) 2007 The DragonFly Project. All rights reserved. @@ -73,6 +73,8 @@ #include <dev/ic/bwireg.h> #include <dev/ic/bwivar.h> +#define BWI_DEBUG + #ifdef BWI_DEBUG int bwi_debug = 1; #define DPRINTF(l, x...) do { if ((l) <= bwi_debug) printf(x); } while (0) |