From: Jiri Slaby Date: Thu, 26 Feb 2009 22:44:31 +0000 (+0100) Subject: ath5k: fix hw rate index condition X-Git-Tag: MMI-PSA29.97-13-9~29230^2~353 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=db5b4f7ae3901fdc48c5b988fc2a5e0cb4ec1870;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git ath5k: fix hw rate index condition Make sure we print out a warning when the index is out of bounds, i.e. even on hw_rix == AR5K_MAX_RATES. Also change to WARN and print text with the reported hw_rix. Signed-off-by: Jiri Slaby Cc: Nick Kossifidis Cc: Luis R. Rodriguez Cc: Bob Copeland Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index bce825b9ff1b..f7c424dcac66 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c @@ -1100,7 +1100,8 @@ ath5k_mode_setup(struct ath5k_softc *sc) static inline int ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix) { - WARN_ON(hw_rix < 0 || hw_rix > AR5K_MAX_RATES); + WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES, + "hw_rix out of bounds: %x\n", hw_rix); return sc->rate_idx[sc->curband->band][hw_rix]; }