staging: wilc1000: Rename struct tstrRSSI to rssi_history_buffer
authorTahia Khan <tahia.khan@gmail.com>
Fri, 24 Feb 2017 22:05:04 +0000 (17:05 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:05 +0000 (09:17 +0100)
Rename struct tstrRSSI to rssi_history_buffer for clarity
and to remove camel casing.

Signed-off-by: Tahia Khan <tahia.khan@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/coreconfigurator.h

index cff1698..1c77529 100644 (file)
@@ -70,7 +70,7 @@ enum connect_status {
        CONNECT_STS_FORCE_16_BIT = 0xFFFF
 };
 
-struct tstrRSSI {
+struct rssi_history_buffer {
        u8 u8Full;
        u8 u8Index;
        s8 as8RSSI[NUM_RSSI];
@@ -93,7 +93,7 @@ struct network_info {
        u8 *ies;
        u16 ies_len;
        void *join_params;
-       struct tstrRSSI str_rssi;
+       struct rssi_history_buffer str_rssi;
        u64 tsf_hi;
 };