diff options
| author | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
|---|---|---|
| committer | Patrick McHardy <kaber@trash.net> | 2010-04-20 16:02:01 +0200 | 
| commit | 62910554656cdcd6b6f84a5154c4155aae4ca231 (patch) | |
| tree | dcf14004f6fd2ef7154362ff948bfeba0f3ea92d /drivers/net/wireless/ath/ath5k/attach.c | |
| parent | 22265a5c3c103cf8c50be62e6c90d045eb649e6d (diff) | |
| parent | ab9304717f7624c41927f442e6b6d418b2d8b3e4 (diff) | |
| download | olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.tar.xz olio-linux-3.10-62910554656cdcd6b6f84a5154c4155aae4ca231.zip  | |
Merge branch 'master' of /repos/git/net-next-2.6
Conflicts:
	Documentation/feature-removal-schedule.txt
	net/ipv6/netfilter/ip6t_REJECT.c
	net/netfilter/xt_limit.c
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/attach.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath5k/attach.c | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath5k/attach.c b/drivers/net/wireless/ath/ath5k/attach.c index 42284445b75..e0c244b02f0 100644 --- a/drivers/net/wireless/ath/ath5k/attach.c +++ b/drivers/net/wireless/ath/ath5k/attach.c @@ -21,6 +21,7 @@  \*************************************/  #include <linux/pci.h> +#include <linux/slab.h>  #include "ath5k.h"  #include "reg.h"  #include "debug.h" @@ -113,7 +114,6 @@ int ath5k_hw_attach(struct ath5k_softc *sc)  	/*  	 * HW information  	 */ -	ah->ah_op_mode = NL80211_IFTYPE_STATION;  	ah->ah_radar.r_enabled = AR5K_TUNE_RADAR_ALERT;  	ah->ah_turbo = false;  	ah->ah_txpower.txp_tpc = AR5K_TUNE_TPC_TXPOWER; @@ -123,6 +123,9 @@ int ath5k_hw_attach(struct ath5k_softc *sc)  	ah->ah_cw_min = AR5K_TUNE_CWMIN;  	ah->ah_limit_tx_retries = AR5K_INIT_TX_RETRY;  	ah->ah_software_retry = false; +	ah->ah_ant_mode = AR5K_ANTMODE_DEFAULT; +	ah->ah_noise_floor = -95;	/* until first NF calibration is run */ +	sc->ani_state.ani_mode = ATH5K_ANI_MODE_AUTO;  	/*  	 * Find the mac version @@ -148,7 +151,6 @@ int ath5k_hw_attach(struct ath5k_softc *sc)  	/* Get MAC, PHY and RADIO revisions */  	ah->ah_mac_srev = srev;  	ah->ah_mac_version = AR5K_REG_MS(srev, AR5K_SREV_VER); -	ah->ah_mac_revision = AR5K_REG_MS(srev, AR5K_SREV_REV);  	ah->ah_phy_revision = ath5k_hw_reg_read(ah, AR5K_PHY_CHIP_ID) &  			0xffffffff;  	ah->ah_radio_5ghz_revision = ath5k_hw_radio_revision(ah, @@ -327,7 +329,7 @@ int ath5k_hw_attach(struct ath5k_softc *sc)  	/* Set BSSID to bcast address: ff:ff:ff:ff:ff:ff for now */  	memcpy(common->curbssid, ath_bcast_mac, ETH_ALEN);  	ath5k_hw_set_associd(ah); -	ath5k_hw_set_opmode(ah); +	ath5k_hw_set_opmode(ah, sc->opmode);  	ath5k_hw_rfgain_opt_init(ah);  |