diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2010-06-29 15:46:43 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-30 15:00:52 -0400 |
commit | ad90319bc3bf604bccf55a3c952d9b68d12c5072 (patch) | |
tree | d7734d339ee912974bc63f86b3dbf38d092c9fff /drivers/net/wireless/rt2x00/rt2800pci.c | |
parent | d440cb9eb1c9c44a811f0b23dff684347d1016e0 (diff) |
rt2x00: Fix beacon updates in rt2800pci
rt2800pci didn't update the beacon template after each beacon interval,
resulting in the DTIM count being incorrect (if DTIM period > 1). Fix this
by calling rt2x00lib_beacondone after the current beacon was sent out.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
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/rt2800pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2800pci.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c index b48b9494845e..6f11760117da 100644 --- a/drivers/net/wireless/rt2x00/rt2800pci.c +++ b/drivers/net/wireless/rt2x00/rt2800pci.c | |||
@@ -953,6 +953,12 @@ static irqreturn_t rt2800pci_interrupt(int irq, void *dev_instance) | |||
953 | if (rt2x00_get_field32(reg, INT_SOURCE_CSR_TX_FIFO_STATUS)) | 953 | if (rt2x00_get_field32(reg, INT_SOURCE_CSR_TX_FIFO_STATUS)) |
954 | rt2800pci_txdone(rt2x00dev); | 954 | rt2800pci_txdone(rt2x00dev); |
955 | 955 | ||
956 | /* | ||
957 | * Current beacon was sent out, fetch the next one | ||
958 | */ | ||
959 | if (rt2x00_get_field32(reg, INT_SOURCE_CSR_TBTT)) | ||
960 | rt2x00lib_beacondone(rt2x00dev); | ||
961 | |||
956 | if (rt2x00_get_field32(reg, INT_SOURCE_CSR_AUTO_WAKEUP)) | 962 | if (rt2x00_get_field32(reg, INT_SOURCE_CSR_AUTO_WAKEUP)) |
957 | rt2800pci_wakeup(rt2x00dev); | 963 | rt2800pci_wakeup(rt2x00dev); |
958 | 964 | ||