diff options
author | James Ketrenos <jketreno@linux.intel.com> | 2005-09-21 15:33:32 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-21 23:19:09 -0400 |
commit | 9a01c16bd49071b2e7904d222cae71d5f8bf6bb5 (patch) | |
tree | 6f1235f312251cccbb7f7d28f1e9c3f7fae0d0a2 /net/ieee80211/ieee80211_crypt_tkip.c | |
parent | 5bfc819b53ed67c76f33f969ab627070e85d87c1 (diff) |
[PATCH] ieee82011: Remove WIRELESS_EXT ifdefs
Remove old WIRELESS_EXT version compatibility
In-tree doesn't need to maintain backward compatibility.
Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'net/ieee80211/ieee80211_crypt_tkip.c')
-rw-r--r-- | net/ieee80211/ieee80211_crypt_tkip.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/net/ieee80211/ieee80211_crypt_tkip.c b/net/ieee80211/ieee80211_crypt_tkip.c index f973d6cb8248..21022f195bab 100644 --- a/net/ieee80211/ieee80211_crypt_tkip.c +++ b/net/ieee80211/ieee80211_crypt_tkip.c | |||
@@ -515,7 +515,6 @@ static int ieee80211_michael_mic_add(struct sk_buff *skb, int hdr_len, | |||
515 | return 0; | 515 | return 0; |
516 | } | 516 | } |
517 | 517 | ||
518 | #if WIRELESS_EXT >= 18 | ||
519 | static void ieee80211_michael_mic_failure(struct net_device *dev, | 518 | static void ieee80211_michael_mic_failure(struct net_device *dev, |
520 | struct ieee80211_hdr_4addr *hdr, | 519 | struct ieee80211_hdr_4addr *hdr, |
521 | int keyidx) | 520 | int keyidx) |
@@ -536,28 +535,6 @@ static void ieee80211_michael_mic_failure(struct net_device *dev, | |||
536 | wrqu.data.length = sizeof(ev); | 535 | wrqu.data.length = sizeof(ev); |
537 | wireless_send_event(dev, IWEVMICHAELMICFAILURE, &wrqu, (char *)&ev); | 536 | wireless_send_event(dev, IWEVMICHAELMICFAILURE, &wrqu, (char *)&ev); |
538 | } | 537 | } |
539 | #elif WIRELESS_EXT >= 15 | ||
540 | static void ieee80211_michael_mic_failure(struct net_device *dev, | ||
541 | struct ieee80211_hdr_4addr *hdr, | ||
542 | int keyidx) | ||
543 | { | ||
544 | union iwreq_data wrqu; | ||
545 | char buf[128]; | ||
546 | |||
547 | /* TODO: needed parameters: count, keyid, key type, TSC */ | ||
548 | sprintf(buf, "MLME-MICHAELMICFAILURE.indication(keyid=%d %scast addr=" | ||
549 | MAC_FMT ")", keyidx, hdr->addr1[0] & 0x01 ? "broad" : "uni", | ||
550 | MAC_ARG(hdr->addr2)); | ||
551 | memset(&wrqu, 0, sizeof(wrqu)); | ||
552 | wrqu.data.length = strlen(buf); | ||
553 | wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf); | ||
554 | } | ||
555 | #else /* WIRELESS_EXT >= 15 */ | ||
556 | static inline void ieee80211_michael_mic_failure(struct net_device *dev, struct ieee80211_hdr_4addr | ||
557 | *hdr, int keyidx) | ||
558 | { | ||
559 | } | ||
560 | #endif /* WIRELESS_EXT >= 15 */ | ||
561 | 538 | ||
562 | static int ieee80211_michael_mic_verify(struct sk_buff *skb, int keyidx, | 539 | static int ieee80211_michael_mic_verify(struct sk_buff *skb, int keyidx, |
563 | int hdr_len, void *priv) | 540 | int hdr_len, void *priv) |