staging: vt6656: rxtx struct vnt_mic_hdr change tsc_47_16/tsc_15_0

Replace with ccmp_pn with size of IEEE80211_CCMP_PN_LEN(6)

memcpy the struct ieee80211_key_seq -> ccmp.pn onto ccmp_pn
removing the need for endian conversion.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-06-28 23:55:39 +01:00 коммит произвёл Greg Kroah-Hartman
Родитель b876e985c2
Коммит 79f976dc31
2 изменённых файлов: 2 добавлений и 9 удалений

Просмотреть файл

@ -848,13 +848,7 @@ static void vnt_fill_txkey(struct vnt_usb_send_context *tx_context,
ieee80211_get_key_tx_seq(tx_key, &seq);
mic_hdr->tsc_47_16 = cpu_to_be32((u32)seq.ccmp.pn[3] |
((u32)seq.ccmp.pn[2] << 8) |
((u32)seq.ccmp.pn[1] << 16) |
((u32)seq.ccmp.pn[0] << 24));
mic_hdr->tsc_15_0 = cpu_to_be16((u16)seq.ccmp.pn[5] |
((u16)seq.ccmp.pn[4] << 8));
memcpy(mic_hdr->ccmp_pn, seq.ccmp.pn, IEEE80211_CCMP_PN_LEN);
if (ieee80211_has_a4(hdr->frame_control))
mic_hdr->hlen = cpu_to_be16(28);

Просмотреть файл

@ -41,8 +41,7 @@ struct vnt_mic_hdr {
u8 id;
u8 tx_priority;
u8 mic_addr2[6];
__be32 tsc_47_16;
__be16 tsc_15_0;
u8 ccmp_pn[IEEE80211_CCMP_PN_LEN];
__be16 payload_len;
__be16 hlen;
__le16 frame_control;