aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2008-03-22 16:27:47 +0000
committerSam Leffler <sam@FreeBSD.org>2008-03-22 16:27:47 +0000
commitc28953b424b1500d30196fa4bba5a33e5242e996 (patch)
tree6ca46b9c80a0e12c6b424114b2780fb8fb9f7dd6 /sys/dev
parent61063e478aa3bad8e36f7fe3df4f1dd417594f8d (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ath/if_ath.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c
index 1e3047472eac..fd02770071d0 100644
--- a/sys/dev/ath/if_ath.c
+++ b/sys/dev/ath/if_ath.c
@@ -4968,9 +4968,10 @@ ath_chan_set(struct ath_softc *sc, struct ieee80211_channel *chan)
ath_stoprecv(sc); /* turn off frame recv */
if (!ath_hal_reset(ah, sc->sc_opmode, &hchan, AH_TRUE, &status)) {
if_printf(ic->ic_ifp, "%s: unable to reset "
- "channel %u (%u Mhz, flags 0x%x hal flags 0x%x)\n",
- __func__, ieee80211_chan2ieee(ic, chan),
- chan->ic_freq, chan->ic_flags, hchan.channelFlags);
+ "channel %u (%u Mhz, flags 0x%x hal flags 0x%x), "
+ "hal status %u\n", __func__,
+ ieee80211_chan2ieee(ic, chan), chan->ic_freq,
+ chan->ic_flags, hchan.channelFlags, status);
return EIO;
}
sc->sc_curchan = hchan;