Commit 567108eb authored by Helmut Schaa's avatar Helmut Schaa Committed by John W. Linville

rt2x00: Remove now unused crypto.aid field

Signed-off-by: default avatarHelmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1ed3811c
...@@ -467,7 +467,6 @@ struct rt2x00lib_crypto { ...@@ -467,7 +467,6 @@ struct rt2x00lib_crypto {
const u8 *address; const u8 *address;
u32 bssidx; u32 bssidx;
u32 aid;
u8 key[16]; u8 key[16];
u8 tx_mic[8]; u8 tx_mic[8];
......
...@@ -518,11 +518,9 @@ int rt2x00mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, ...@@ -518,11 +518,9 @@ int rt2x00mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
crypto.cmd = cmd; crypto.cmd = cmd;
if (sta) { if (sta)
/* some drivers need the AID */
crypto.aid = sta->aid;
crypto.address = sta->addr; crypto.address = sta->addr;
} else else
crypto.address = bcast_addr; crypto.address = bcast_addr;
if (crypto.cipher == CIPHER_TKIP) if (crypto.cipher == CIPHER_TKIP)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment