Commit 7664072b authored by Luis R. Rodriguez's avatar Luis R. Rodriguez Committed by John W. Linville
Browse files

ath9k: Use ath9k_hw_setbssidmask() on reset



The same code was being implemented on reset for setting the bssidmask,
instead just use the already provided helper.

Signed-off-by: default avatarLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent f2b2143e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2472,8 +2472,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
		  | ah->sta_id1_defaults);
	ath9k_hw_set_operating_mode(ah, ah->opmode);

	REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
	REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
	ath9k_hw_setbssidmask(ah);

	REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);