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/rt73usb.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/rt73usb.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt73usb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index ddb59c037750..fc38c0c5cc3a 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -355,7 +355,9 @@ static void rt73usb_config_intf(struct rt2x00_dev *rt2x00dev, | |||
355 | * Enable synchronisation. | 355 | * Enable synchronisation. |
356 | */ | 356 | */ |
357 | rt73usb_register_read(rt2x00dev, TXRX_CSR9, ®); | 357 | rt73usb_register_read(rt2x00dev, TXRX_CSR9, ®); |
358 | rt2x00_set_field32(®, TXRX_CSR9_TSF_TICKING, 1); | ||
358 | rt2x00_set_field32(®, TXRX_CSR9_TSF_SYNC, conf->sync); | 359 | rt2x00_set_field32(®, TXRX_CSR9_TSF_SYNC, conf->sync); |
360 | rt2x00_set_field32(®, TXRX_CSR9_TBTT_ENABLE, 1); | ||
359 | rt73usb_register_write(rt2x00dev, TXRX_CSR9, reg); | 361 | rt73usb_register_write(rt2x00dev, TXRX_CSR9, reg); |
360 | } | 362 | } |
361 | 363 | ||