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: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Quytelda Kahja
2018-03-30 23:08:09 -07:00
committed by Greg Kroah-Hartman
parent 4e74c671d0
commit 9f2ae0a40c
3 changed files with 3 additions and 3 deletions

View File

@@ -950,7 +950,7 @@ static int ks7010_sdio_probe(struct sdio_func *func,
/* send stop request to MAC */
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;
size_t size;

View File

@@ -1426,7 +1426,7 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv)
static
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);
if (!pp)

View File

@@ -298,7 +298,7 @@ struct link_ap_info {
#define RESULT_CONNECT 0
#define RESULT_DISCONNECT 1
struct hostif_stop_request_t {
struct hostif_stop_request {
struct hostif_hdr header;
} __packed;