2011/1/19 Bruno Randolf <br1@xxxxxxxxxxx>: > Remove sc->curband because the band is already stored in the current channel. > > Signed-off-by: Bruno Randolf <br1@xxxxxxxxxxx> > --- > Âdrivers/net/wireless/ath/ath5k/base.c |  11 ++++------- > Âdrivers/net/wireless/ath/ath5k/base.h |  Â2 -- > Â2 files changed, 4 insertions(+), 9 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c > index a00cc11..0e39ee8 100644 > --- a/drivers/net/wireless/ath/ath5k/base.c > +++ b/drivers/net/wireless/ath/ath5k/base.c > @@ -551,7 +551,7 @@ ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix) >            Â"hw_rix out of bounds: %x\n", hw_rix)) >        Âreturn 0; > > -    rix = sc->rate_idx[sc->curband->band][hw_rix]; > +    rix = sc->rate_idx[sc->curchan->band][hw_rix]; >    Âif (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix)) >        Ârix = 0; > > @@ -1361,7 +1361,7 @@ ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb, >    Ârxs->flag |= RX_FLAG_TSFT; > >    Ârxs->freq = sc->curchan->center_freq; > -    rxs->band = sc->curband->band; > +    rxs->band = sc->curchan->band; > >    Ârxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi; > > @@ -1376,7 +1376,7 @@ ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb, >    Ârxs->flag |= ath5k_rx_decrypted(sc, skb, rs); > >    Âif (rxs->rate_idx >= 0 && rs->rs_rate == > -      sc->curband->bitrates[rxs->rate_idx].hw_value_short) > +      sc->sbands[sc->curchan->band].bitrates[rxs->rate_idx].hw_value_short) >        Ârxs->flag |= RX_FLAG_SHORTPRE; > >    Âath5k_debug_dump_skb(sc, skb, "RX Â", 0); > @@ -2536,7 +2536,6 @@ ath5k_init_hw(struct ath5k_softc *sc) >     * and then setup of the interrupt mask. >     */ >    Âsc->curchan = sc->hw->conf.channel; > -    sc->curband = &sc->sbands[sc->curchan->band]; >    Âsc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL | >        ÂAR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL | >        ÂAR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; > @@ -2663,10 +2662,8 @@ ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan, >     * so we should also free any remaining >     * tx buffers */ >    Âath5k_drain_tx_buffs(sc); > -    if (chan) { > +    if (chan) >        Âsc->curchan = chan; > -        sc->curband = &sc->sbands[chan->band]; > -    } >    Âret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL, >                                Âskip_pcu); >    Âif (ret) { > diff --git a/drivers/net/wireless/ath/ath5k/base.h b/drivers/net/wireless/ath/ath5k/base.h > index 58660e4..8f919dc 100644 > --- a/drivers/net/wireless/ath/ath5k/base.h > +++ b/drivers/net/wireless/ath/ath5k/base.h > @@ -183,8 +183,6 @@ struct ath5k_softc { >    Âenum nl80211_iftype   opmode; >    Âstruct ath5k_hw     *ah;      Â/* Atheros HW */ > > -    struct ieee80211_supported_band     *curband; > - > Â#ifdef CONFIG_ATH5K_DEBUG >    Âstruct ath5k_dbg_info  debug;     Â/* debug info */ > Â#endif /* CONFIG_ATH5K_DEBUG */ > Acked-by: Nick Kossifidis <mickflemm@xxxxxxxxx> -- GPG ID: 0xD21DB2DB As you read this post global entropy rises. Have Fun ;-) Nick -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html