diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-09-18 17:29:21 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:53:00 -0400 |
commit | ea49c359f36d5b40bf033c45a08332cb73777aa2 (patch) | |
tree | 07d99bbaca451af42d633e63c9c0c20d4f2d6f79 | |
parent | f97df02e23269c7650869f6192e809f8ac1a4b39 (diff) |
[PATCH] mac80211: remove crypto algorithm typedef
The typedef is not required, we can just use "enum ieee80211_key_alg"
instead of "ieee80211_key_alg"
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl3945-base.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl4965-base.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwlwifi.h | 2 | ||||
-rw-r--r-- | include/net/mac80211.h | 12 | ||||
-rw-r--r-- | net/mac80211/ieee80211_key.h | 2 | ||||
-rw-r--r-- | net/mac80211/key.c | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl3945-base.c b/drivers/net/wireless/iwlwifi/iwl3945-base.c index 8acda640df25..0700076e55b2 100644 --- a/drivers/net/wireless/iwlwifi/iwl3945-base.c +++ b/drivers/net/wireless/iwlwifi/iwl3945-base.c | |||
@@ -7293,7 +7293,7 @@ out_unlock: | |||
7293 | return rc; | 7293 | return rc; |
7294 | } | 7294 | } |
7295 | 7295 | ||
7296 | static int iwl_mac_set_key(struct ieee80211_hw *hw, set_key_cmd cmd, | 7296 | static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
7297 | const u8 *local_addr, const u8 *addr, | 7297 | const u8 *local_addr, const u8 *addr, |
7298 | struct ieee80211_key_conf *key) | 7298 | struct ieee80211_key_conf *key) |
7299 | { | 7299 | { |
diff --git a/drivers/net/wireless/iwlwifi/iwl4965-base.c b/drivers/net/wireless/iwlwifi/iwl4965-base.c index 7b9227c562b7..7bc25f74e3ab 100644 --- a/drivers/net/wireless/iwlwifi/iwl4965-base.c +++ b/drivers/net/wireless/iwlwifi/iwl4965-base.c | |||
@@ -7690,7 +7690,7 @@ out_unlock: | |||
7690 | return rc; | 7690 | return rc; |
7691 | } | 7691 | } |
7692 | 7692 | ||
7693 | static int iwl_mac_set_key(struct ieee80211_hw *hw, set_key_cmd cmd, | 7693 | static int iwl_mac_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
7694 | const u8 *local_addr, const u8 *addr, | 7694 | const u8 *local_addr, const u8 *addr, |
7695 | struct ieee80211_key_conf *key) | 7695 | struct ieee80211_key_conf *key) |
7696 | { | 7696 | { |
diff --git a/drivers/net/wireless/iwlwifi/iwlwifi.h b/drivers/net/wireless/iwlwifi/iwlwifi.h index 00c79e200c68..e0b97c341215 100644 --- a/drivers/net/wireless/iwlwifi/iwlwifi.h +++ b/drivers/net/wireless/iwlwifi/iwlwifi.h | |||
@@ -412,7 +412,7 @@ struct iwl_tid_data { | |||
412 | }; | 412 | }; |
413 | 413 | ||
414 | struct iwl_hw_key { | 414 | struct iwl_hw_key { |
415 | ieee80211_key_alg alg; | 415 | enum ieee80211_key_alg alg; |
416 | int keylen; | 416 | int keylen; |
417 | u8 key[32]; | 417 | u8 key[32]; |
418 | }; | 418 | }; |
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index fcca9c39b9e7..8fb975f0bed4 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -551,12 +551,12 @@ struct ieee80211_if_conf { | |||
551 | * @ALG_TKIP: TKIP | 551 | * @ALG_TKIP: TKIP |
552 | * @ALG_CCMP: CCMP (AES) | 552 | * @ALG_CCMP: CCMP (AES) |
553 | */ | 553 | */ |
554 | typedef enum ieee80211_key_alg { | 554 | enum ieee80211_key_alg { |
555 | ALG_NONE, | 555 | ALG_NONE, |
556 | ALG_WEP, | 556 | ALG_WEP, |
557 | ALG_TKIP, | 557 | ALG_TKIP, |
558 | ALG_CCMP, | 558 | ALG_CCMP, |
559 | } ieee80211_key_alg; | 559 | }; |
560 | 560 | ||
561 | 561 | ||
562 | /** | 562 | /** |
@@ -596,7 +596,7 @@ enum ieee80211_key_flags { | |||
596 | * @key: key material | 596 | * @key: key material |
597 | */ | 597 | */ |
598 | struct ieee80211_key_conf { | 598 | struct ieee80211_key_conf { |
599 | ieee80211_key_alg alg; | 599 | enum ieee80211_key_alg alg; |
600 | u8 hw_key_idx; | 600 | u8 hw_key_idx; |
601 | u8 flags; | 601 | u8 flags; |
602 | s8 keyidx; | 602 | s8 keyidx; |
@@ -616,9 +616,9 @@ struct ieee80211_key_conf { | |||
616 | * @SET_KEY: a key is set | 616 | * @SET_KEY: a key is set |
617 | * @DISABLE_KEY: a key must be disabled | 617 | * @DISABLE_KEY: a key must be disabled |
618 | */ | 618 | */ |
619 | typedef enum set_key_cmd { | 619 | enum set_key_cmd { |
620 | SET_KEY, DISABLE_KEY, | 620 | SET_KEY, DISABLE_KEY, |
621 | } set_key_cmd; | 621 | }; |
622 | 622 | ||
623 | 623 | ||
624 | /** | 624 | /** |
@@ -1014,7 +1014,7 @@ struct ieee80211_ops { | |||
1014 | unsigned int *total_flags, | 1014 | unsigned int *total_flags, |
1015 | int mc_count, struct dev_addr_list *mc_list); | 1015 | int mc_count, struct dev_addr_list *mc_list); |
1016 | int (*set_tim)(struct ieee80211_hw *hw, int aid, int set); | 1016 | int (*set_tim)(struct ieee80211_hw *hw, int aid, int set); |
1017 | int (*set_key)(struct ieee80211_hw *hw, set_key_cmd cmd, | 1017 | int (*set_key)(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
1018 | const u8 *local_address, const u8 *address, | 1018 | const u8 *local_address, const u8 *address, |
1019 | struct ieee80211_key_conf *key); | 1019 | struct ieee80211_key_conf *key); |
1020 | int (*set_ieee8021x)(struct ieee80211_hw *hw, int use_ieee8021x); | 1020 | int (*set_ieee8021x)(struct ieee80211_hw *hw, int use_ieee8021x); |
diff --git a/net/mac80211/ieee80211_key.h b/net/mac80211/ieee80211_key.h index ae49418f18b4..fc770e98d47b 100644 --- a/net/mac80211/ieee80211_key.h +++ b/net/mac80211/ieee80211_key.h | |||
@@ -114,7 +114,7 @@ struct ieee80211_key { | |||
114 | 114 | ||
115 | struct ieee80211_key *ieee80211_key_alloc(struct ieee80211_sub_if_data *sdata, | 115 | struct ieee80211_key *ieee80211_key_alloc(struct ieee80211_sub_if_data *sdata, |
116 | struct sta_info *sta, | 116 | struct sta_info *sta, |
117 | ieee80211_key_alg alg, | 117 | enum ieee80211_key_alg alg, |
118 | int idx, | 118 | int idx, |
119 | size_t key_len, | 119 | size_t key_len, |
120 | const u8 *key_data); | 120 | const u8 *key_data); |
diff --git a/net/mac80211/key.c b/net/mac80211/key.c index c10e53afbb4f..f13d46b2c13c 100644 --- a/net/mac80211/key.c +++ b/net/mac80211/key.c | |||
@@ -113,7 +113,7 @@ static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key) | |||
113 | 113 | ||
114 | struct ieee80211_key *ieee80211_key_alloc(struct ieee80211_sub_if_data *sdata, | 114 | struct ieee80211_key *ieee80211_key_alloc(struct ieee80211_sub_if_data *sdata, |
115 | struct sta_info *sta, | 115 | struct sta_info *sta, |
116 | ieee80211_key_alg alg, | 116 | enum ieee80211_key_alg alg, |
117 | int idx, | 117 | int idx, |
118 | size_t key_len, | 118 | size_t key_len, |
119 | const u8 *key_data) | 119 | const u8 *key_data) |