aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2003-01-20 21:06:58 +0000
committerSam Leffler <sam@FreeBSD.org>2003-01-20 21:06:58 +0000
commit2a363b89631da0f4500d9499ddac443073574159 (patch)
tree6c0b190d791df2efa66eb0f023e9e1780dd25ca0 /sys/dev
parent1c56cdce1897b7e1db21ab80f45d6b866f2c6950 (diff)
downloadsrc-2a363b89631da0f4500d9499ddac443073574159.tar.gz
src-2a363b89631da0f4500d9499ddac443073574159.zip
correct default setting of hw.wi.txerate; it must be -1, not zero,
to silence all msgs (like the old driver)
Notes
Notes: svn path=/head/; revision=109593
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/wi/if_wi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c
index 739d02fb6918..5d469a193392 100644
--- a/sys/dev/wi/if_wi.c
+++ b/sys/dev/wi/if_wi.c
@@ -174,9 +174,9 @@ SYSCTL_NODE(_hw, OID_AUTO, wi, CTLFLAG_RD, 0, "Wireless driver parameters");
static struct timeval lasttxerror; /* time of last tx error msg */
static int curtxeps; /* current tx error msgs/sec */
-static int wi_txerate = 0; /* tx error rate: max msgs/sec */
+static int wi_txerate = -1; /* tx error rate: max msgs/sec */
SYSCTL_INT(_hw_wi, OID_AUTO, txerate, CTLFLAG_RW, &wi_txerate,
- 0, "max tx error msgs/sec; 0 disables msgs");
+ 0, "max tx error msgs/sec; -1 disables msgs");
#define WI_DEBUG
#ifdef WI_DEBUG