diff options
author | Ajay Singh <ajay.kathat@microchip.com> | 2018-02-20 20:27:53 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-02-22 15:08:57 +0100 |
commit | f53df85694c72cc73c655a70034b3b5cc9e4b1e4 (patch) | |
tree | 0cde8a3ccef7e2c378e9797c857407e0c882f7d2 /drivers | |
parent | b5f9ce64618910f28ae74c9906cabea935554001 (diff) | |
download | lwn-f53df85694c72cc73c655a70034b3b5cc9e4b1e4.tar.gz lwn-f53df85694c72cc73c655a70034b3b5cc9e4b1e4.zip |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/wilc1000/host_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index f79618ab8389..fd2176559dca 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -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; } |