From: Luis R. Rodriguez Date: Mon, 3 Aug 2009 19:24:55 +0000 (-0700) Subject: ath9k: remove dangling error check on keycache reset on hw init X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2f69ffacb303bba274b126eabd3a3ed011b2d35d;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git ath9k: remove dangling error check on keycache reset on hw init The keycache reset will not fail as right above we ensure to set the sc->keymax to be <= ah->caps.keycache_size. Just remove this dangling check. Signed-off-by: Luis R. Rodriguez Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index a5475b7a59de..7f412dd9b9fb 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -1363,9 +1363,6 @@ static int ath_init_softc(u16 devid, struct ath_softc *sc) for (i = 0; i < sc->keymax; i++) ath9k_hw_keyreset(ah, (u16) i); - if (r) - goto bad; - /* default to MONITOR mode */ sc->sc_ah->opmode = NL80211_IFTYPE_MONITOR;