diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-09-08 11:31:49 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-11 15:53:35 -0400 |
commit | 79636a5fbbdfb303dbf2bfe7a7fa396f40bfac31 (patch) | |
tree | 8a312dcb9c92c08016acd77f6c55e20ab79faec9 /drivers/net/wireless/rt2x00/rt73usb.c | |
parent | 37ffc8da803a1151e887f2a80f08f0c49d1dc1d5 (diff) |
rt2x00: Revert "rt2x00: Fix the beacon length bug"
This reverts:
b93ce437eba7e0232683326f30d9d1167a872fad
rt2x00: Fix the beacon length bug
The workaround is no longer required since it has been
correctly fixed in rt2x00usb now.
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 | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/net/wireless/rt2x00/rt73usb.c b/drivers/net/wireless/rt2x00/rt73usb.c index e698ae0efbce..d9ef34c6670c 100644 --- a/drivers/net/wireless/rt2x00/rt73usb.c +++ b/drivers/net/wireless/rt2x00/rt73usb.c | |||
@@ -1572,7 +1572,6 @@ static void rt73usb_write_beacon(struct queue_entry *entry) | |||
1572 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); | 1572 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb); |
1573 | unsigned int beacon_base; | 1573 | unsigned int beacon_base; |
1574 | u32 reg; | 1574 | u32 reg; |
1575 | u32 word, len; | ||
1576 | 1575 | ||
1577 | /* | 1576 | /* |
1578 | * Add the descriptor in front of the skb. | 1577 | * Add the descriptor in front of the skb. |
@@ -1582,17 +1581,6 @@ static void rt73usb_write_beacon(struct queue_entry *entry) | |||
1582 | skbdesc->desc = entry->skb->data; | 1581 | skbdesc->desc = entry->skb->data; |
1583 | 1582 | ||
1584 | /* | 1583 | /* |
1585 | * Adjust the beacon databyte count. The current number is | ||
1586 | * calculated before this function gets called, but falsely | ||
1587 | * assumes that the descriptor was already present in the SKB. | ||
1588 | */ | ||
1589 | rt2x00_desc_read(skbdesc->desc, 0, &word); | ||
1590 | len = rt2x00_get_field32(word, TXD_W0_DATABYTE_COUNT); | ||
1591 | len += skbdesc->desc_len; | ||
1592 | rt2x00_set_field32(&word, TXD_W0_DATABYTE_COUNT, len); | ||
1593 | rt2x00_desc_write(skbdesc->desc, 0, word); | ||
1594 | |||
1595 | /* | ||
1596 | * Disable beaconing while we are reloading the beacon data, | 1584 | * Disable beaconing while we are reloading the beacon data, |
1597 | * otherwise we might be sending out invalid data. | 1585 | * otherwise we might be sending out invalid data. |
1598 | */ | 1586 | */ |