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

staging: ks7010: Remove trailing _t from 'struct hostif_sleep_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_sleep_request_t' with 'struct
hostif_sleep_request'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b8beba5d
...@@ -1483,7 +1483,7 @@ static ...@@ -1483,7 +1483,7 @@ static
void hostif_sleep_request(struct ks_wlan_private *priv, void hostif_sleep_request(struct ks_wlan_private *priv,
enum sleep_mode_type mode) enum sleep_mode_type mode)
{ {
struct hostif_sleep_request_t *pp; struct hostif_sleep_request *pp;
if (mode == SLP_SLEEP) { if (mode == SLP_SLEEP) {
pp = hostif_generic_request(sizeof(*pp), HIF_SLEEP_REQ); pp = hostif_generic_request(sizeof(*pp), HIF_SLEEP_REQ);
......
...@@ -424,7 +424,7 @@ enum sleep_mode_type { ...@@ -424,7 +424,7 @@ enum sleep_mode_type {
SLP_SLEEP SLP_SLEEP
}; };
struct hostif_sleep_request_t { struct hostif_sleep_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