Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic Fix ITDEBUG macro
details: https://anonhg.NetBSD.org/src/rev/63000f6ee687
branches: trunk
changeset: 482668:63000f6ee687
user: mjacob <mjacob%NetBSD.org@localhost>
date: Sat Feb 19 01:50:25 2000 +0000
description:
Fix ITDEBUG macro
diffstat:
sys/dev/ic/isp_target.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 3469b9b8a451 -r 63000f6ee687 sys/dev/ic/isp_target.h
--- a/sys/dev/ic/isp_target.h Sat Feb 19 01:50:03 2000 +0000
+++ b/sys/dev/ic/isp_target.h Sat Feb 19 01:50:25 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isp_target.h,v 1.2 2000/02/12 02:33:34 mjacob Exp $ */
+/* $NetBSD: isp_target.h,v 1.3 2000/02/19 01:50:25 mjacob Exp $ */
/*
* Qlogic Target Mode Structure and Flag Definitions
*
@@ -606,7 +606,7 @@
#define ISP_TDQE(isp, msg, idx, arg) \
if (isp_tdebug > 3) isp_print_qentry(isp, msg, idx, arg)
-#define ITDEBUG(level, msg) if (level > isp_tdebug) PRINTF msg
+#define ITDEBUG(level, msg) if (isp_tdebug >= level) PRINTF msg
/*
* The functions below are target mode functions that
Home |
Main Index |
Thread Index |
Old Index