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

staging: ks7010: Remove trailing _t from 'struct hostif_stop_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 hostif_stop_request_t' with 'struct
hostif_stop_request'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4e74c671
...@@ -950,7 +950,7 @@ static int ks7010_sdio_probe(struct sdio_func *func, ...@@ -950,7 +950,7 @@ static int ks7010_sdio_probe(struct sdio_func *func,
/* send stop request to MAC */ /* send stop request to MAC */
static int send_stop_request(struct sdio_func *func) static int send_stop_request(struct sdio_func *func)
{ {
struct hostif_stop_request_t *pp; struct hostif_stop_request *pp;
struct ks_sdio_card *card; struct ks_sdio_card *card;
size_t size; size_t size;
......
...@@ -1426,7 +1426,7 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv) ...@@ -1426,7 +1426,7 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv)
static static
void hostif_stop_request(struct ks_wlan_private *priv) void hostif_stop_request(struct ks_wlan_private *priv)
{ {
struct hostif_stop_request_t *pp; struct hostif_stop_request *pp;
pp = hostif_generic_request(sizeof(*pp), HIF_STOP_REQ); pp = hostif_generic_request(sizeof(*pp), HIF_STOP_REQ);
if (!pp) if (!pp)
......
...@@ -298,7 +298,7 @@ struct link_ap_info { ...@@ -298,7 +298,7 @@ struct link_ap_info {
#define RESULT_CONNECT 0 #define RESULT_CONNECT 0
#define RESULT_DISCONNECT 1 #define RESULT_DISCONNECT 1
struct hostif_stop_request_t { struct hostif_stop_request {
struct hostif_hdr header; struct hostif_hdr header;
} __packed; } __packed;
......
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