diff options
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt61pci.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt61pci.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c index d54443c25fe3..987e89009f74 100644 --- a/drivers/net/wireless/rt2x00/rt61pci.c +++ b/drivers/net/wireless/rt2x00/rt61pci.c | |||
@@ -1778,8 +1778,8 @@ static void rt61pci_write_tx_desc(struct rt2x00_dev *rt2x00dev, | |||
1778 | rt2x00_desc_write(txd, 2, word); | 1778 | rt2x00_desc_write(txd, 2, word); |
1779 | 1779 | ||
1780 | if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags)) { | 1780 | if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc->flags)) { |
1781 | _rt2x00_desc_write(txd, 3, skbdesc->iv); | 1781 | _rt2x00_desc_write(txd, 3, skbdesc->iv[0]); |
1782 | _rt2x00_desc_write(txd, 4, skbdesc->eiv); | 1782 | _rt2x00_desc_write(txd, 4, skbdesc->iv[1]); |
1783 | } | 1783 | } |
1784 | 1784 | ||
1785 | rt2x00_desc_read(txd, 5, &word); | 1785 | rt2x00_desc_read(txd, 5, &word); |
@@ -1949,9 +1949,12 @@ static void rt61pci_fill_rxdone(struct queue_entry *entry, | |||
1949 | } | 1949 | } |
1950 | 1950 | ||
1951 | if (rxdesc->cipher != CIPHER_NONE) { | 1951 | if (rxdesc->cipher != CIPHER_NONE) { |
1952 | _rt2x00_desc_read(entry_priv->desc, 2, &rxdesc->iv); | 1952 | _rt2x00_desc_read(entry_priv->desc, 2, &rxdesc->iv[0]); |
1953 | _rt2x00_desc_read(entry_priv->desc, 3, &rxdesc->eiv); | 1953 | _rt2x00_desc_read(entry_priv->desc, 3, &rxdesc->iv[1]); |
1954 | rxdesc->dev_flags |= RXDONE_CRYPTO_IV; | ||
1955 | |||
1954 | _rt2x00_desc_read(entry_priv->desc, 4, &rxdesc->icv); | 1956 | _rt2x00_desc_read(entry_priv->desc, 4, &rxdesc->icv); |
1957 | rxdesc->dev_flags |= RXDONE_CRYPTO_ICV; | ||
1955 | 1958 | ||
1956 | /* | 1959 | /* |
1957 | * Hardware has stripped IV/EIV data from 802.11 frame during | 1960 | * Hardware has stripped IV/EIV data from 802.11 frame during |