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

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 30dafee4f4137053eb6e1ef573c515139c7eb81e..aa87c6e97ba5768aaefb784ace4ee4972ef6b4bb 100644 (file)
@@ -223,7 +223,7 @@ static u8 read_ie(unsigned char *bp, u8 max, u8 *body)
 
 
 static
-int get_ap_information(struct ks_wlan_private *priv, struct ap_info_t *ap_info,
+int get_ap_information(struct ks_wlan_private *priv, struct ap_info *ap_info,
                       struct local_ap_t *ap)
 {
        unsigned char *bp;
@@ -771,10 +771,10 @@ static
 void hostif_scan_indication(struct ks_wlan_private *priv)
 {
        int i;
-       struct ap_info_t *ap_info;
+       struct ap_info *ap_info;
 
        netdev_dbg(priv->net_dev, "scan_ind_count = %d\n", priv->scan_ind_count);
-       ap_info = (struct ap_info_t *)(priv->rxp);
+       ap_info = (struct ap_info *)(priv->rxp);
 
        if (priv->scan_ind_count) {
                /* bssid check */
@@ -794,7 +794,7 @@ void hostif_scan_indication(struct ks_wlan_private *priv)
        if (priv->scan_ind_count < LOCAL_APLIST_MAX + 1) {
                netdev_dbg(priv->net_dev, " scan_ind_count=%d :: aplist.size=%d\n",
                        priv->scan_ind_count, priv->aplist.size);
-               get_ap_information(priv, (struct ap_info_t *)(priv->rxp),
+               get_ap_information(priv, (struct ap_info *)(priv->rxp),
                                   &(priv->aplist.ap[priv->scan_ind_count - 1]));
                priv->aplist.size = priv->scan_ind_count;
        } else {
index 2391fb38ea353c507573193cca11b7d731e2db79..bcdc1d7c30cf7145b2b693931b006275c039cfc1 100644 (file)
@@ -253,7 +253,7 @@ struct rate_set16 {
        u8 rate_pad;
 } __packed;
 
-struct ap_info_t {
+struct ap_info {
        u8 bssid[6];    /* +00 */
        u8 rssi;        /* +06 */
        u8 sq;  /* +07 */