diff options
| author | Tahia Khan <tahia.khan@gmail.com> | 2017-02-25 01:05:04 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-06 11:17:05 +0300 |
| commit | f3ae44fc8ecca22aad4b8505fed296f5763e5788 (patch) | |
| tree | 0fc5d4e8fe68fc230d9d103372a1478de6341ed6 | |
| parent | d351c2db5420bb17dcd2d9aac7ddb5f64c6d04b3 (diff) | |
| download | linux-f3ae44fc8ecca22aad4b8505fed296f5763e5788.tar.xz | |
staging: wilc1000: Rename struct tstrRSSI to rssi_history_buffer
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>
| -rw-r--r-- | drivers/staging/wilc1000/coreconfigurator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/coreconfigurator.h b/drivers/staging/wilc1000/coreconfigurator.h index cff16984167b..1c77529fb1b1 100644 --- a/drivers/staging/wilc1000/coreconfigurator.h +++ b/drivers/staging/wilc1000/coreconfigurator.h @@ -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; }; |
