diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-03-09 17:47:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-13 19:31:41 -0400 |
commit | fd3c91c5e57eef8db71cf52e2473832c330bf5db (patch) | |
tree | ed1db81a356d81cbfbf19811856b34ad9f04fdba /drivers/net/wireless/rt2x00/rt2400pci.c | |
parent | 72fa559bf44aab30ac5fc8317472ef3441f4aa64 (diff) |
rt2x00: Always enable TSF ticking
Whatever mode we are in, according to the legacy drivers
we should always enable TSF ticking/counting.
We should also always enable the TBCN/TBTT field,
this field is only disabled during beacon regeneration.
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, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2400pci.c b/drivers/net/wireless/rt2x00/rt2400pci.c index 70f711e86362..e2bb63496dbc 100644 --- a/drivers/net/wireless/rt2x00/rt2400pci.c +++ b/drivers/net/wireless/rt2x00/rt2400pci.c | |||
@@ -291,7 +291,9 @@ static void rt2400pci_config_intf(struct rt2x00_dev *rt2x00dev, | |||
291 | * Enable synchronisation. | 291 | * Enable synchronisation. |
292 | */ | 292 | */ |
293 | rt2x00pci_register_read(rt2x00dev, CSR14, ®); | 293 | rt2x00pci_register_read(rt2x00dev, CSR14, ®); |
294 | rt2x00_set_field32(®, CSR14_TSF_COUNT, 1); | ||
294 | rt2x00_set_field32(®, CSR14_TSF_SYNC, conf->sync); | 295 | rt2x00_set_field32(®, CSR14_TSF_SYNC, conf->sync); |
296 | rt2x00_set_field32(®, CSR14_TBCN, 1); | ||
295 | rt2x00pci_register_write(rt2x00dev, CSR14, reg); | 297 | rt2x00pci_register_write(rt2x00dev, CSR14, reg); |
296 | } | 298 | } |
297 | 299 | ||