Commit c5ad1e94 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct wpa_suite_t'.

The "_t" suffix is not needed for structure names in this driver, and is a
reflection of an older typedef system that is no longer in place. Replace
all occurences of 'struct wpa_suite_t' with 'struct wpa_suite'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5312af9e
...@@ -1660,7 +1660,7 @@ void hostif_sme_set_wep(struct ks_wlan_private *priv, int type) ...@@ -1660,7 +1660,7 @@ void hostif_sme_set_wep(struct ks_wlan_private *priv, int type)
} }
} }
struct wpa_suite_t { struct wpa_suite {
__le16 size; __le16 size;
unsigned char suite[4][CIPHER_ID_LEN]; unsigned char suite[4][CIPHER_ID_LEN];
} __packed; } __packed;
...@@ -1673,7 +1673,7 @@ struct rsn_mode_t { ...@@ -1673,7 +1673,7 @@ struct rsn_mode_t {
static static
void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type) void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type)
{ {
struct wpa_suite_t wpa_suite; struct wpa_suite wpa_suite;
struct rsn_mode_t rsn_mode; struct rsn_mode_t rsn_mode;
__le32 val; __le32 val;
......
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