From: Mohammed Shafi Shajakhan Date: Fri, 22 Apr 2011 07:42:23 +0000 (+0530) Subject: ath9k: remove the unlikely check for autosleep X-Git-Tag: v3.0-rc2~7^2~16^2~283 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=cedc7e3d0c847d602d2970120d0e4cca72f364a4;p=~emulex%2Finfiniband.git ath9k: remove the unlikely check for autosleep newer chipsets support auto sleep feature, so remove the unlikely check which does not seems to help anything Signed-off-by: Mohammed Shafi Shajakhan Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index abff2d5229e..916b3409a0e 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c @@ -1742,7 +1742,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) if ((sc->ps_flags & (PS_WAIT_FOR_BEACON | PS_WAIT_FOR_CAB | PS_WAIT_FOR_PSPOLL_DATA)) || - unlikely(ath9k_check_auto_sleep(sc))) + ath9k_check_auto_sleep(sc)) ath_rx_ps(sc, skb); spin_unlock_irqrestore(&sc->sc_pm_lock, flags);