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

staging: ks7010: Remove trailing _t from 'struct association_request_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 association_request_t' with 'struct
association_request'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b6b2bb94
...@@ -863,7 +863,7 @@ void hostif_adhoc_set_confirm(struct ks_wlan_private *priv) ...@@ -863,7 +863,7 @@ void hostif_adhoc_set_confirm(struct ks_wlan_private *priv)
static static
void hostif_associate_indication(struct ks_wlan_private *priv) void hostif_associate_indication(struct ks_wlan_private *priv)
{ {
struct association_request_t *assoc_req; struct association_request *assoc_req;
struct association_response_t *assoc_resp; struct association_response_t *assoc_resp;
unsigned char *pb; unsigned char *pb;
union iwreq_data wrqu; union iwreq_data wrqu;
...@@ -874,7 +874,7 @@ void hostif_associate_indication(struct ks_wlan_private *priv) ...@@ -874,7 +874,7 @@ void hostif_associate_indication(struct ks_wlan_private *priv)
static const char associnfo_leader0[] = "ASSOCINFO(ReqIEs="; static const char associnfo_leader0[] = "ASSOCINFO(ReqIEs=";
static const char associnfo_leader1[] = " RespIEs="; static const char associnfo_leader1[] = " RespIEs=";
assoc_req = (struct association_request_t *)(priv->rxp); assoc_req = (struct association_request *)(priv->rxp);
assoc_resp = (struct association_response_t *)(assoc_req + 1); assoc_resp = (struct association_response_t *)(assoc_req + 1);
pb = (unsigned char *)(assoc_resp + 1); pb = (unsigned char *)(assoc_resp + 1);
......
...@@ -381,7 +381,7 @@ struct hostif_adhoc_set2_request { ...@@ -381,7 +381,7 @@ struct hostif_adhoc_set2_request {
u8 bssid[ETH_ALEN]; u8 bssid[ETH_ALEN];
} __packed; } __packed;
struct association_request_t { struct association_request {
u8 type; u8 type;
u8 pad; u8 pad;
__le16 capability; __le16 capability;
...@@ -401,7 +401,7 @@ struct association_response_t { ...@@ -401,7 +401,7 @@ struct association_response_t {
struct hostif_associate_indication_t { struct hostif_associate_indication_t {
struct hostif_hdr header; struct hostif_hdr header;
struct association_request_t assoc_req; struct association_request assoc_req;
struct association_response_t assoc_resp; struct association_response_t assoc_resp;
/* followed by (req_ies_size + resp_ies_size) octets of data */ /* followed by (req_ies_size + resp_ies_size) octets of data */
/* reqIEs data *//* respIEs data */ /* reqIEs data *//* respIEs data */
......
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