summaryrefslogtreecommitdiff
path: root/sys/dev/ic/wdcdbg.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-10-29 18:42:51 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-10-29 18:42:51 +0000
commitfe63b19b87d842cd912d6210bd9d1dd14ff84634 (patch)
tree5b1852a2a8953207723645170c7463be6ac4080c /sys/dev/ic/wdcdbg.h
parent728db7f6750965a9eaf7546fdf9c8506f4e20e10 (diff)
undo this; adds files, unacceptable at this point in release
Diffstat (limited to 'sys/dev/ic/wdcdbg.h')
-rw-r--r--sys/dev/ic/wdcdbg.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/sys/dev/ic/wdcdbg.h b/sys/dev/ic/wdcdbg.h
deleted file mode 100644
index ed7c6031922..00000000000
--- a/sys/dev/ic/wdcdbg.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* $OpenBSD: wdcdbg.h,v 1.1 2000/10/28 18:08:46 csapuntz Exp $ */
-
-#define WDCDEBUG_PROBE
-
-#define DEBUG_INTR 0x01
-#define DEBUG_XFERS 0x02
-#define DEBUG_STATUS 0x04
-#define DEBUG_FUNCS 0x08
-#define DEBUG_PROBE 0x10
-#define DEBUG_STATUSX 0x20
-#define DEBUG_SDRIVE 0x40
-#define DEBUG_DETACH 0x80
-
-extern int wdcdebug_mask; /* init'ed in wdc.c */
-
-#ifdef WDCDEBUG
-extern int wdcdebug_mask; /* init'ed in wdc.c */
-#define WDCDEBUG_PRINT(args, level) \
- if (wdcdebug_mask & (level)) \
- printf args
-#else
-#define WDCDEBUG_PRINT(args, level)
-#endif
-
-#if defined(WDCDEBUG) || defined(WDCDEBUG_PROBE)
-#define WDCDEBUG_PRINT_PROBE(args) if (wdcdebug_mask & DEBUG_PROBE) printf args
-#else
-#define WDCDEBUG_PRINT_PROBE(args)
-#endif