From: Ajay Singh Date: Mon, 19 Feb 2018 15:29:36 +0000 (+0530) Subject: staging: wilc1000: rename strHostIfStaInactiveT to avoid camelCase X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=37ac510675d21f112323a2bcee5c14cbdfad08bd;p=openwrt%2Fstaging%2Fblogic.git staging: wilc1000: rename strHostIfStaInactiveT to avoid camelCase Fix "Avoid camelCase" issue found by checkpatch.pl script. Signed-off-by: Ajay Singh Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index eda395d3a4ef..f685da29963e 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -1944,7 +1944,7 @@ static s32 Handle_GetStatistics(struct wilc_vif *vif, } static s32 Handle_Get_InActiveTime(struct wilc_vif *vif, - struct sta_inactive_t *strHostIfStaInactiveT) + struct sta_inactive_t *hif_sta_inactive) { s32 result = 0; u8 *stamac; @@ -1959,7 +1959,7 @@ static s32 Handle_Get_InActiveTime(struct wilc_vif *vif, return -ENOMEM; stamac = wid.val; - ether_addr_copy(stamac, strHostIfStaInactiveT->mac); + ether_addr_copy(stamac, hif_sta_inactive->mac); result = wilc_send_config_pkt(vif, SET_CFG, &wid, 1, wilc_get_vif_idx(vif));