staging: ks7010: Remove trailing _t from 'struct hostif_mic_failure_request_t'.
authorQuytelda Kahja <quytelda@tamalin.org>
Sat, 31 Mar 2018 06:08:29 +0000 (23:08 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Apr 2018 12:16:49 +0000 (14:16 +0200)
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_mic_failure_request_t' with 'struct
hostif_mic_failure_request'.

Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_hostif.c
drivers/staging/ks7010/ks_hostif.h

index 19063ae099744f6113fb006cddb16f58159bb292..92865d1363c4371aca2161a1d815df8d02d93ea5 100644 (file)
@@ -1558,7 +1558,7 @@ void hostif_mic_failure_request(struct ks_wlan_private *priv,
                                unsigned short failure_count,
                                unsigned short timer)
 {
-       struct hostif_mic_failure_request_t *pp;
+       struct hostif_mic_failure_request *pp;
 
        pp = hostif_generic_request(sizeof(*pp), HIF_MIC_FAILURE_REQ);
        if (!pp)
index 3b001aa5e8c4960b9c65d01da8251e13926481e6..681451f30e90ec5b3416d0a98e5981bc391fed07 100644 (file)
@@ -428,7 +428,7 @@ struct hostif_sleep_request {
        struct hostif_hdr header;
 } __packed;
 
-struct hostif_mic_failure_request_t {
+struct hostif_mic_failure_request {
        struct hostif_hdr header;
        __le16 failure_count;
        __le16 timer;