summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2006-11-01 22:24:21 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2006-11-01 22:24:21 +0000
commitdd32e9f046d78a1b9954554a1f4a312d261b1e11 (patch)
tree5f0c5e9e4de895ff77f20a44797530159ecaf54c /sys
parentff07d8d9a276fedd40e4bee46c3773412bdfd06a (diff)
lm75 scoring should not show up in verbose
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/i2c/i2c_scan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/i2c/i2c_scan.c b/sys/dev/i2c/i2c_scan.c
index 4bdef1031ea..0d739da4a29 100644
--- a/sys/dev/i2c/i2c_scan.c
+++ b/sys/dev/i2c/i2c_scan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i2c_scan.c,v 1.90 2006/09/26 23:48:56 jsg Exp $ */
+/* $OpenBSD: i2c_scan.c,v 1.91 2006/11/01 22:24:20 deraadt Exp $ */
/*
* Copyright (c) 2005 Theo de Raadt <deraadt@openbsd.org>
@@ -319,9 +319,9 @@ lm75probe(void)
case 3:
return ("lm75a");
default:
-#if defined(I2C_DEBUG) || defined(I2C_VERBOSE)
+#if defined(I2C_DEBUG)
printf("lm75probe: unknown chip, scored %d\n", score);
-#endif /* defined(I2C_DEBUG) || defined(I2C_VERBOSE) */
+#endif /* defined(I2C_DEBUG) */
return (NULL);
}
}