diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-18 17:54:45 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-18 17:54:45 -0500 |
| commit | 486bfe5c7ca6184f35b93b9f2bf3fa3baa1b65e4 (patch) | |
| tree | 3cec2570aca8ec88da087398d0bdd52054dfa697 /drivers/net/wireless/iwlwifi/iwl-6000.c | |
| parent | 5cbb0601bfddfc55d6ea409651313c13e3d6e90a (diff) | |
| parent | 70e3bb504ccfe6ba725ab120bdb516d205d834f9 (diff) | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (42 commits)
cxgb3: fix premature page unmap
ibm_newemac: Fix EMACx_TRTR[TRT] bit shifts
vlan: Fix register_vlan_dev() error path
gro: Fix illegal merging of trailer trash
sungem: Fix Serdes detection.
net: fix mdio section mismatch warning
ppp: fix BUG on non-linear SKB (multilink receive)
ixgbe: Fixing EEH handler to handle more than one error
net: Fix the rollback test in dev_change_name()
Revert "isdn: isdn_ppp: Use SKB list facilities instead of home-grown implementation."
TI Davinci EMAC : Fix Console Hang when bringing the interface down
smsc911x: Fix Console Hang when bringing the interface down.
mISDN: fix error return in HFCmulti_init()
forcedeth: mac address fix
r6040: fix version printing
Bluetooth: Fix regression with L2CAP configuration in Basic Mode
Bluetooth: Select Basic Mode as default for SOCK_SEQPACKET
Bluetooth: Set general bonding security for ACL by default
r8169: Fix receive buffer length when MTU is between 1515 and 1536
can: add the missing netlink get_xstats_size callback
...
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-6000.c')
| -rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-6000.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index c295b8ee9228..1473452ba22f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
| @@ -175,6 +175,7 @@ struct iwl_cfg iwl6000h_2agn_cfg = { | |||
| 175 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 175 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 176 | .shadow_ram_support = true, | 176 | .shadow_ram_support = true, |
| 177 | .ht_greenfield_support = true, | 177 | .ht_greenfield_support = true, |
| 178 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 178 | }; | 179 | }; |
| 179 | 180 | ||
| 180 | /* | 181 | /* |
| @@ -198,6 +199,7 @@ struct iwl_cfg iwl6000i_2agn_cfg = { | |||
| 198 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 199 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 199 | .shadow_ram_support = true, | 200 | .shadow_ram_support = true, |
| 200 | .ht_greenfield_support = true, | 201 | .ht_greenfield_support = true, |
| 202 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 201 | }; | 203 | }; |
| 202 | 204 | ||
| 203 | struct iwl_cfg iwl6050_2agn_cfg = { | 205 | struct iwl_cfg iwl6050_2agn_cfg = { |
| @@ -218,6 +220,7 @@ struct iwl_cfg iwl6050_2agn_cfg = { | |||
| 218 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 220 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 219 | .shadow_ram_support = true, | 221 | .shadow_ram_support = true, |
| 220 | .ht_greenfield_support = true, | 222 | .ht_greenfield_support = true, |
| 223 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 221 | }; | 224 | }; |
| 222 | 225 | ||
| 223 | struct iwl_cfg iwl6000_3agn_cfg = { | 226 | struct iwl_cfg iwl6000_3agn_cfg = { |
| @@ -238,6 +241,7 @@ struct iwl_cfg iwl6000_3agn_cfg = { | |||
| 238 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 241 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 239 | .shadow_ram_support = true, | 242 | .shadow_ram_support = true, |
| 240 | .ht_greenfield_support = true, | 243 | .ht_greenfield_support = true, |
| 244 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 241 | }; | 245 | }; |
| 242 | 246 | ||
| 243 | struct iwl_cfg iwl6050_3agn_cfg = { | 247 | struct iwl_cfg iwl6050_3agn_cfg = { |
| @@ -258,6 +262,7 @@ struct iwl_cfg iwl6050_3agn_cfg = { | |||
| 258 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 262 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 259 | .shadow_ram_support = true, | 263 | .shadow_ram_support = true, |
| 260 | .ht_greenfield_support = true, | 264 | .ht_greenfield_support = true, |
| 265 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 261 | }; | 266 | }; |
| 262 | 267 | ||
| 263 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); | 268 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
