diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-12-02 16:50:33 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-12-05 09:35:56 -0500 |
commit | 74415edb042ef9f3b1291f978763687f35aadbb3 (patch) | |
tree | 395b690a7f5f0fdf0af97f5b6f922f8064770ab8 /drivers/net/wireless/rt2x00/rt2x00dev.c | |
parent | 011a03300bdd60782f465b97c3aefd58bfaae316 (diff) |
rt2x00: Add RXDONE_CRYPTO_IV/ICV flags
Drivers should notify rt2x00lib when they provide
the IV/ICV data. This adds some flexibility to drivers
which can't provide all information.
* rt2500usb provides ICV inside the frame
* rt2800pci doesn't provide IV/ICV
* rt2800usb doesn't provide IV/ICV
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/rt2x00dev.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00dev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00dev.c b/drivers/net/wireless/rt2x00/rt2x00dev.c index 7fc1d766062b..6d92542fcf0d 100644 --- a/drivers/net/wireless/rt2x00/rt2x00dev.c +++ b/drivers/net/wireless/rt2x00/rt2x00dev.c | |||
@@ -636,7 +636,8 @@ void rt2x00lib_rxdone(struct rt2x00_dev *rt2x00dev, | |||
636 | * provided seperately (through hardware descriptor) | 636 | * provided seperately (through hardware descriptor) |
637 | * in which case we should reinsert the data into the frame. | 637 | * in which case we should reinsert the data into the frame. |
638 | */ | 638 | */ |
639 | if ((rxdesc.flags & RX_FLAG_IV_STRIPPED)) { | 639 | if ((rxdesc.dev_flags & RXDONE_CRYPTO_IV) && |
640 | (rxdesc.flags & RX_FLAG_IV_STRIPPED)) { | ||
640 | rt2x00crypto_rx_insert_iv(entry->skb, align, | 641 | rt2x00crypto_rx_insert_iv(entry->skb, align, |
641 | header_length, &rxdesc); | 642 | header_length, &rxdesc); |
642 | } else if (align) { | 643 | } else if (align) { |