staging: wilc1000: rename pstrNetworkInfo in get_rssi_avg function
This patch renames pstrNetworkInfo to network_info that is first argument of get_rssi_avg function to avoid camelcase. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Glen Lee <glen.lee@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bdd3460f77
commit
0b8bea1cac
1 changed files with 3 additions and 3 deletions
|
@ -224,14 +224,14 @@ static void clear_shadow_scan(void)
|
|||
|
||||
}
|
||||
|
||||
static u32 get_rssi_avg(tstrNetworkInfo *pstrNetworkInfo)
|
||||
static u32 get_rssi_avg(tstrNetworkInfo *network_info)
|
||||
{
|
||||
u8 i;
|
||||
int rssi_v = 0;
|
||||
u8 num_rssi = (pstrNetworkInfo->strRssi.u8Full) ? NUM_RSSI : (pstrNetworkInfo->strRssi.u8Index);
|
||||
u8 num_rssi = (network_info->strRssi.u8Full) ? NUM_RSSI : (network_info->strRssi.u8Index);
|
||||
|
||||
for (i = 0; i < num_rssi; i++)
|
||||
rssi_v += pstrNetworkInfo->strRssi.as8RSSI[i];
|
||||
rssi_v += network_info->strRssi.as8RSSI[i];
|
||||
|
||||
rssi_v /= num_rssi;
|
||||
return rssi_v;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue