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

staging: ks7010: Remove trailing _t from 'struct ssid_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 ssid_t' with 'struct ssid'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e9fda46d
...@@ -202,7 +202,7 @@ struct hostif_start_request { ...@@ -202,7 +202,7 @@ struct hostif_start_request {
#define MODE_ADHOC 3 #define MODE_ADHOC 3
} __packed; } __packed;
struct ssid_t { struct ssid {
u8 size; u8 size;
u8 body[IEEE80211_MAX_SSID_LEN]; u8 body[IEEE80211_MAX_SSID_LEN];
u8 ssid_pad; u8 ssid_pad;
...@@ -359,7 +359,7 @@ struct hostif_ps_adhoc_set_confirm_t { ...@@ -359,7 +359,7 @@ struct hostif_ps_adhoc_set_confirm_t {
struct hostif_infrastructure_set_request_t { struct hostif_infrastructure_set_request_t {
struct hostif_hdr header; struct hostif_hdr header;
struct hostif_request_t request; struct hostif_request_t request;
struct ssid_t ssid; struct ssid ssid;
__le16 beacon_lost_count; __le16 beacon_lost_count;
__le16 auth_type; __le16 auth_type;
struct channel_list channel_list; struct channel_list channel_list;
...@@ -381,7 +381,7 @@ struct hostif_infrastructure_set_confirm_t { ...@@ -381,7 +381,7 @@ struct hostif_infrastructure_set_confirm_t {
struct hostif_adhoc_set_request_t { struct hostif_adhoc_set_request_t {
struct hostif_hdr header; struct hostif_hdr header;
struct hostif_request_t request; struct hostif_request_t request;
struct ssid_t ssid; struct ssid ssid;
__le16 channel; __le16 channel;
} __packed; } __packed;
...@@ -396,7 +396,7 @@ struct hostif_adhoc_set2_request_t { ...@@ -396,7 +396,7 @@ struct hostif_adhoc_set2_request_t {
struct hostif_hdr header; struct hostif_hdr header;
struct hostif_request_t request; struct hostif_request_t request;
__le16 reserved; __le16 reserved;
struct ssid_t ssid; struct ssid ssid;
struct channel_list channel_list; struct channel_list channel_list;
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
} __packed; } __packed;
...@@ -446,7 +446,7 @@ struct hostif_bss_scan_request_t { ...@@ -446,7 +446,7 @@ struct hostif_bss_scan_request_t {
__le32 ch_time_min; __le32 ch_time_min;
__le32 ch_time_max; __le32 ch_time_max;
struct channel_list channel_list; struct channel_list channel_list;
struct ssid_t ssid; struct ssid ssid;
} __packed; } __packed;
struct hostif_bss_scan_confirm_t { struct hostif_bss_scan_confirm_t {
......
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