staging: wilc1000: rename pu32InactiveTime to avoid camelCase

Fix "Avoid camelCase" 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:
Ajay Singh 2018-02-20 20:27:53 +05:30 committed by Greg Kroah-Hartman
parent b5f9ce6461
commit f53df85694
1 changed files with 2 additions and 2 deletions

View File

@ -3164,7 +3164,7 @@ int wilc_set_operation_mode(struct wilc_vif *vif, u32 mode)
}
s32 wilc_get_inactive_time(struct wilc_vif *vif, const u8 *mac,
u32 *pu32InactiveTime)
u32 *out_val)
{
s32 result = 0;
struct host_if_msg msg;
@ -3187,7 +3187,7 @@ s32 wilc_get_inactive_time(struct wilc_vif *vif, const u8 *mac,
else
wait_for_completion(&hif_drv->comp_inactive_time);
*pu32InactiveTime = inactive_time;
*out_val = inactive_time;
return result;
}