Commit 0a8a721d authored by Mohammed Shafi Shajakhan's avatar Mohammed Shafi Shajakhan Committed by John W. Linville
Browse files

ath9k: remove unnecessary PS wrappers



ath_set_channel is called from ath9k_config which already has proper
PS wrappers

Signed-off-by: default avatarMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 5ce3df64
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -371,12 +371,8 @@ static int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw,
	if (sc->sc_flags & SC_OP_INVALID)
		return -EIO;

	ath9k_ps_wakeup(sc);

	r = ath_reset_internal(sc, hchan, false);

	ath9k_ps_restore(sc);

	return r;
}