mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
staging: wilc1000: rename pstrStatistics to avoid camelCase
Fix "Avoid caseCase" issue found by checkpatch.pl script. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
66ba14fc62
commit
fcc70105f6
1 changed files with 10 additions and 10 deletions
|
@ -1889,7 +1889,7 @@ static void handle_get_rssi(struct wilc_vif *vif)
|
||||||
}
|
}
|
||||||
|
|
||||||
static s32 handle_get_statistics(struct wilc_vif *vif,
|
static s32 handle_get_statistics(struct wilc_vif *vif,
|
||||||
struct rf_info *pstrStatistics)
|
struct rf_info *stats)
|
||||||
{
|
{
|
||||||
struct wid wid_list[5];
|
struct wid wid_list[5];
|
||||||
u32 wid_cnt = 0, result = 0;
|
u32 wid_cnt = 0, result = 0;
|
||||||
|
@ -1897,31 +1897,31 @@ static s32 handle_get_statistics(struct wilc_vif *vif,
|
||||||
wid_list[wid_cnt].id = WID_LINKSPEED;
|
wid_list[wid_cnt].id = WID_LINKSPEED;
|
||||||
wid_list[wid_cnt].type = WID_CHAR;
|
wid_list[wid_cnt].type = WID_CHAR;
|
||||||
wid_list[wid_cnt].size = sizeof(char);
|
wid_list[wid_cnt].size = sizeof(char);
|
||||||
wid_list[wid_cnt].val = (s8 *)&pstrStatistics->link_speed;
|
wid_list[wid_cnt].val = (s8 *)&stats->link_speed;
|
||||||
wid_cnt++;
|
wid_cnt++;
|
||||||
|
|
||||||
wid_list[wid_cnt].id = WID_RSSI;
|
wid_list[wid_cnt].id = WID_RSSI;
|
||||||
wid_list[wid_cnt].type = WID_CHAR;
|
wid_list[wid_cnt].type = WID_CHAR;
|
||||||
wid_list[wid_cnt].size = sizeof(char);
|
wid_list[wid_cnt].size = sizeof(char);
|
||||||
wid_list[wid_cnt].val = (s8 *)&pstrStatistics->rssi;
|
wid_list[wid_cnt].val = (s8 *)&stats->rssi;
|
||||||
wid_cnt++;
|
wid_cnt++;
|
||||||
|
|
||||||
wid_list[wid_cnt].id = WID_SUCCESS_FRAME_COUNT;
|
wid_list[wid_cnt].id = WID_SUCCESS_FRAME_COUNT;
|
||||||
wid_list[wid_cnt].type = WID_INT;
|
wid_list[wid_cnt].type = WID_INT;
|
||||||
wid_list[wid_cnt].size = sizeof(u32);
|
wid_list[wid_cnt].size = sizeof(u32);
|
||||||
wid_list[wid_cnt].val = (s8 *)&pstrStatistics->tx_cnt;
|
wid_list[wid_cnt].val = (s8 *)&stats->tx_cnt;
|
||||||
wid_cnt++;
|
wid_cnt++;
|
||||||
|
|
||||||
wid_list[wid_cnt].id = WID_RECEIVED_FRAGMENT_COUNT;
|
wid_list[wid_cnt].id = WID_RECEIVED_FRAGMENT_COUNT;
|
||||||
wid_list[wid_cnt].type = WID_INT;
|
wid_list[wid_cnt].type = WID_INT;
|
||||||
wid_list[wid_cnt].size = sizeof(u32);
|
wid_list[wid_cnt].size = sizeof(u32);
|
||||||
wid_list[wid_cnt].val = (s8 *)&pstrStatistics->rx_cnt;
|
wid_list[wid_cnt].val = (s8 *)&stats->rx_cnt;
|
||||||
wid_cnt++;
|
wid_cnt++;
|
||||||
|
|
||||||
wid_list[wid_cnt].id = WID_FAILED_COUNT;
|
wid_list[wid_cnt].id = WID_FAILED_COUNT;
|
||||||
wid_list[wid_cnt].type = WID_INT;
|
wid_list[wid_cnt].type = WID_INT;
|
||||||
wid_list[wid_cnt].size = sizeof(u32);
|
wid_list[wid_cnt].size = sizeof(u32);
|
||||||
wid_list[wid_cnt].val = (s8 *)&pstrStatistics->tx_fail_cnt;
|
wid_list[wid_cnt].val = (s8 *)&stats->tx_fail_cnt;
|
||||||
wid_cnt++;
|
wid_cnt++;
|
||||||
|
|
||||||
result = wilc_send_config_pkt(vif, GET_CFG, wid_list,
|
result = wilc_send_config_pkt(vif, GET_CFG, wid_list,
|
||||||
|
@ -1931,13 +1931,13 @@ static s32 handle_get_statistics(struct wilc_vif *vif,
|
||||||
if (result)
|
if (result)
|
||||||
netdev_err(vif->ndev, "Failed to send scan parameters\n");
|
netdev_err(vif->ndev, "Failed to send scan parameters\n");
|
||||||
|
|
||||||
if (pstrStatistics->link_speed > TCP_ACK_FILTER_LINK_SPEED_THRESH &&
|
if (stats->link_speed > TCP_ACK_FILTER_LINK_SPEED_THRESH &&
|
||||||
pstrStatistics->link_speed != DEFAULT_LINK_SPEED)
|
stats->link_speed != DEFAULT_LINK_SPEED)
|
||||||
wilc_enable_tcp_ack_filter(true);
|
wilc_enable_tcp_ack_filter(true);
|
||||||
else if (pstrStatistics->link_speed != DEFAULT_LINK_SPEED)
|
else if (stats->link_speed != DEFAULT_LINK_SPEED)
|
||||||
wilc_enable_tcp_ack_filter(false);
|
wilc_enable_tcp_ack_filter(false);
|
||||||
|
|
||||||
if (pstrStatistics != &vif->wilc->dummy_statistics)
|
if (stats != &vif->wilc->dummy_statistics)
|
||||||
complete(&hif_wait_response);
|
complete(&hif_wait_response);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue