aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-09-14 11:10:25 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:49:28 -0400
commitc15a205070fac9fab0d9d4642b9342677b67f933 (patch)
tree7f795dee7b941f7bc4079c9a4edc84808346e1ba
parent7848ba7d7a010ccb265617fc2bc053e2bdf06f48 (diff)
[MAC80211]: remove set_key_idx callback
No existing drivers use this callback, hence there's no telling how it might be used. In fact, it is unlikely to be of much use as-is because the default key index isn't something that the driver can do much with without knowing which interface it was for etc. And if it needs the key index for the transmitted frame, it can get it by keeping a reference to the key_conf structure and looking it up by hw_key_idx. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Acked-by: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/net/mac80211.h13
-rw-r--r--net/mac80211/key.c4
2 files changed, 0 insertions, 17 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 9137579c12a4..8f22b7384805 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -645,19 +645,6 @@ struct ieee80211_ops {
645 const u8 *local_address, const u8 *address, 645 const u8 *local_address, const u8 *address,
646 struct ieee80211_key_conf *key); 646 struct ieee80211_key_conf *key);
647 647
648 /*
649 * Set TX key index for default/broadcast keys. This is needed in cases
650 * where wlan card is doing full WEP/TKIP encapsulation (wep_include_iv
651 * is not set), in other cases, this function pointer can be set to
652 * NULL since the IEEE 802.11 module takes care of selecting the key
653 * index for each TX frame.
654 *
655 * TODO: If you use this callback in your driver tell us if you need
656 * any other information from it to make it easier, like the
657 * key_conf instead.
658 */
659 int (*set_key_idx)(struct ieee80211_hw *hw, int idx);
660
661 /* Enable/disable IEEE 802.1X. This item requests wlan card to pass 648 /* Enable/disable IEEE 802.1X. This item requests wlan card to pass
662 * unencrypted EAPOL-Key frames even when encryption is configured. 649 * unencrypted EAPOL-Key frames even when encryption is configured.
663 * If the wlan card does not require such a configuration, this 650 * If the wlan card does not require such a configuration, this
diff --git a/net/mac80211/key.c b/net/mac80211/key.c
index 19e77f626d84..b10e33deb63e 100644
--- a/net/mac80211/key.c
+++ b/net/mac80211/key.c
@@ -250,10 +250,6 @@ void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
250 250
251 if (sdata->default_key) 251 if (sdata->default_key)
252 ieee80211_debugfs_key_add_default(sdata); 252 ieee80211_debugfs_key_add_default(sdata);
253
254 if (sdata->local->ops->set_key_idx)
255 sdata->local->ops->set_key_idx(
256 local_to_hw(sdata->local), idx);
257 } 253 }
258} 254}
259 255