ath9k: Print the correct channel mode
channelFlags doesn't contain the operating HT mode. Use IS_CHAN_HT40 to determine if the current channel is in HT40 mode. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
0ed7b93e30
commit
feced2012e
@@ -340,9 +340,7 @@ static int ath_reset_internal(struct ath_softc *sc, struct ath9k_channel *hchan,
|
|||||||
fastcc = false;
|
fastcc = false;
|
||||||
|
|
||||||
ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
|
ath_dbg(common, CONFIG, "Reset to %u MHz, HT40: %d fastcc: %d\n",
|
||||||
hchan->channel, !!(hchan->channelFlags & (CHANNEL_HT40MINUS |
|
hchan->channel, IS_CHAN_HT40(hchan), fastcc);
|
||||||
CHANNEL_HT40PLUS)),
|
|
||||||
fastcc);
|
|
||||||
|
|
||||||
r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
|
r = ath9k_hw_reset(ah, hchan, caldata, fastcc);
|
||||||
if (r) {
|
if (r) {
|
||||||
|
Reference in New Issue
Block a user