diff options
author | 2006-11-01 22:24:20 +0000 | |
---|---|---|
committer | 2006-11-01 22:24:20 +0000 | |
commit | 3fe49b44772873e7c0c8d519a9cde5846b5cc7b1 (patch) | |
tree | 02380558223ad1f66a726191a98027f63a2349ad /sys/dev/i2c | |
parent | -.Xr sh 1 , (diff) | |
download | wireguard-openbsd-3fe49b44772873e7c0c8d519a9cde5846b5cc7b1.tar.xz wireguard-openbsd-3fe49b44772873e7c0c8d519a9cde5846b5cc7b1.zip |
lm75 scoring should not show up in verbose
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r-- | sys/dev/i2c/i2c_scan.c | 6 |
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); } } |