diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2007-10-06 08:14:58 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:12 -0400 |
commit | a137e202b0e47bca301d2315cca5c08140409ed7 (patch) | |
tree | b728d8d9c93640b4c1a3e6f096edf53639b38f17 /drivers/net/wireless/rt2x00/rt2400pci.c | |
parent | feb24691e3e87a740caec4568be1a202db786f20 (diff) |
[PATCH] rt2x00: get_duration expects values in 100kbs
get_duration expects all speeds to be passed in 100kbs,
this means that passing 2 is incorrect and should be raised to 20
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2400pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2400pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2400pci.c b/drivers/net/wireless/rt2x00/rt2400pci.c index 0e345659f421..bfab5a165b76 100644 --- a/drivers/net/wireless/rt2x00/rt2400pci.c +++ b/drivers/net/wireless/rt2x00/rt2400pci.c | |||
@@ -277,7 +277,7 @@ static void rt2400pci_config_type(struct rt2x00_dev *rt2x00dev, const int type, | |||
277 | */ | 277 | */ |
278 | rt2x00pci_register_read(rt2x00dev, BCNCSR1, ®); | 278 | rt2x00pci_register_read(rt2x00dev, BCNCSR1, ®); |
279 | rt2x00_set_field32(®, BCNCSR1_PRELOAD, | 279 | rt2x00_set_field32(®, BCNCSR1_PRELOAD, |
280 | PREAMBLE + get_duration(IEEE80211_HEADER, 2)); | 280 | PREAMBLE + get_duration(IEEE80211_HEADER, 20)); |
281 | rt2x00pci_register_write(rt2x00dev, BCNCSR1, reg); | 281 | rt2x00pci_register_write(rt2x00dev, BCNCSR1, reg); |
282 | 282 | ||
283 | /* | 283 | /* |