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/rt61pci.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/rt61pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index 99f18d4ae855..914aee0ce8ce 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -343,7 +343,9 @@ static void rt61pci_config_intf(struct rt2x00_dev *rt2x00dev, | |||
343 | * Enable synchronisation. | 343 | * Enable synchronisation. |
344 | */ | 344 | */ |
345 | rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, ®); | 345 | rt2x00pci_register_read(rt2x00dev, TXRX_CSR9, ®); |
346 | rt2x00_set_field32(®, TXRX_CSR9_TSF_TICKING, 1); | ||
346 | rt2x00_set_field32(®, TXRX_CSR9_TSF_SYNC, conf->sync); | 347 | rt2x00_set_field32(®, TXRX_CSR9_TSF_SYNC, conf->sync); |
348 | rt2x00_set_field32(®, TXRX_CSR9_TBTT_ENABLE, 1); | ||
347 | rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg); | 349 | rt2x00pci_register_write(rt2x00dev, TXRX_CSR9, reg); |
348 | } | 350 | } |
349 | 351 | ||