diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-04-17 19:45:21 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-04-17 19:45:21 +0000 |
commit | d3e740b6feca95851ae5cb04bc8b375bec599194 (patch) | |
tree | f71ec0c7e0fc18305a5677f84ef9d73806753a8b /sys/dev | |
parent | 61389fa3dc6ef327958543eba3ce6d968d88cb4c (diff) |
The debug printf in malo_newstate() is too verbose so require debug level 2
to print it.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/malo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/malo.c b/sys/dev/ic/malo.c index fcf61155b37..a319376f2e6 100644 --- a/sys/dev/ic/malo.c +++ b/sys/dev/ic/malo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malo.c,v 1.64 2007/03/14 08:23:09 claudio Exp $ */ +/* $OpenBSD: malo.c,v 1.65 2007/04/17 19:45:20 claudio Exp $ */ /* * Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org> @@ -1128,7 +1128,7 @@ malo_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg) uint8_t chan; int rate; - DPRINTF(("%s: %s\n", sc->sc_dev.dv_xname, __func__)); + DPRINTFN(2, ("%s: %s\n", sc->sc_dev.dv_xname, __func__)); ostate = ic->ic_state; timeout_del(&sc->sc_scan_to); |