aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ichsmb
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2004-03-12 21:45:33 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2004-03-12 21:45:33 +0000
commita122cca95357f39039d19fd639373416dd863081 (patch)
tree6c034a25fc32204c3b23ab4ef2656ae5983b7ea5 /sys/dev/ichsmb
parent06d6e4fcfeea94893ddd82264e531131939f2b80 (diff)
Notes
Diffstat (limited to 'sys/dev/ichsmb')
-rw-r--r--sys/dev/ichsmb/ichsmb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ichsmb/ichsmb.c b/sys/dev/ichsmb/ichsmb.c
index d92e23ea7d93d..0d8dd59b07a3f 100644
--- a/sys/dev/ichsmb/ichsmb.c
+++ b/sys/dev/ichsmb/ichsmb.c
@@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$");
* Enable debugging by defining ICHSMB_DEBUG to a non-zero value.
*/
#define ICHSMB_DEBUG 0
-#if ICHSMB_DEBUG != 0 && defined(__GNUC__)
+#if ICHSMB_DEBUG != 0 && (defined(__GNUC__) || defined(__INTEL_COMPILER))
#define DBG(fmt, args...) \
do { log(LOG_DEBUG, "%s: " fmt, __func__ , ## args); } while (0)
#else