staging: wilc1000: rename s8PowerMode & strPowerMgmtParam to avoid camelCase

Fix "Avoid camelCase" issues 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:
Ajay Singh 2018-02-19 20:59:31 +05:30 committed by Greg Kroah-Hartman
parent 343216fd5d
commit 3f25623046
1 changed files with 6 additions and 6 deletions

View File

@ -2383,20 +2383,20 @@ static void ListenTimerCB(struct timer_list *t)
} }
static void Handle_PowerManagement(struct wilc_vif *vif, static void Handle_PowerManagement(struct wilc_vif *vif,
struct power_mgmt_param *strPowerMgmtParam) struct power_mgmt_param *pm_param)
{ {
s32 result = 0; s32 result = 0;
struct wid wid; struct wid wid;
s8 s8PowerMode; s8 power_mode;
wid.id = (u16)WID_POWER_MANAGEMENT; wid.id = (u16)WID_POWER_MANAGEMENT;
if (strPowerMgmtParam->enabled) if (pm_param->enabled)
s8PowerMode = MIN_FAST_PS; power_mode = MIN_FAST_PS;
else else
s8PowerMode = NO_POWERSAVE; power_mode = NO_POWERSAVE;
wid.val = &s8PowerMode; wid.val = &power_mode;
wid.size = sizeof(char); wid.size = sizeof(char);
result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1,