diff options
| author | John W. Linville <linville@tuxdriver.com> | 2012-03-05 15:05:54 -0500 | 
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2012-03-05 15:05:54 -0500 | 
| commit | 051d3b50430160a86cbe4a2deef219c8038bd03f (patch) | |
| tree | b2c276067819f259f86369e5341202332a8172be /drivers/net/wireless/ath/ath9k/rc.c | |
| parent | ffcb97388b1d41b1db063eb041cb9af408662127 (diff) | |
| parent | c288ec614e264b46853c65d3db9ccf91d53c9484 (diff) | |
| download | olio-linux-3.10-051d3b50430160a86cbe4a2deef219c8038bd03f.tar.xz olio-linux-3.10-051d3b50430160a86cbe4a2deef219c8038bd03f.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/rc.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/rc.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index a427a16bb73..b8c6c38cbb9 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c @@ -567,10 +567,8 @@ static u8 ath_rc_setvalid_rates(struct ath_rate_priv *ath_rc_priv,  static u8 ath_rc_setvalid_htrates(struct ath_rate_priv *ath_rc_priv,  				  const struct ath_rate_table *rate_table, -				  u8 *mcs_set, u32 capflag) +				  struct ath_rateset *rateset, u32 capflag)  { -	struct ath_rateset *rateset = (struct ath_rateset *)mcs_set; -  	u8 i, j, hi = 0;  	/* Use intersection of working rates and valid rates */ @@ -1212,7 +1210,7 @@ static void ath_rc_init(struct ath_softc *sc,  {  	struct ath_rateset *rateset = &ath_rc_priv->neg_rates;  	struct ath_common *common = ath9k_hw_common(sc->sc_ah); -	u8 *ht_mcs = (u8 *)&ath_rc_priv->neg_ht_rates; +	struct ath_rateset *ht_mcs = &ath_rc_priv->neg_ht_rates;  	u8 i, j, k, hi = 0, hthi = 0;  	/* Initial rate table size. Will change depending  |