This patch renames u8AssocNumb to assoc_sta to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun....@gmail.com>
---
 drivers/staging/wilc1000/host_interface.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wilc1000/host_interface.c 
b/drivers/staging/wilc1000/host_interface.c
index c0f30a2..0ff500d 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -4307,7 +4307,7 @@ int wilc_del_allstation(struct wilc_vif *vif, u8 
mac_addr[][ETH_ALEN])
        struct host_if_drv *hif_drv = vif->hif_drv;
        u8 zero_addr[ETH_ALEN] = {0};
        int i;
-       u8 u8AssocNumb = 0;
+       u8 assoc_sta = 0;
 
        if (!hif_drv) {
                PRINT_ER("driver is null\n");
@@ -4331,15 +4331,15 @@ int wilc_del_allstation(struct wilc_vif *vif, u8 
mac_addr[][ETH_ALEN])
                                del_all_sta_info->del_all_sta[i][3],
                                del_all_sta_info->del_all_sta[i][4],
                                del_all_sta_info->del_all_sta[i][5]);
-                       u8AssocNumb++;
+                       assoc_sta++;
                }
        }
-       if (!u8AssocNumb) {
+       if (!assoc_sta) {
                PRINT_D(CFG80211_DBG, "NO ASSOCIATED STAS\n");
                return result;
        }
 
-       del_all_sta_info->assoc_sta = u8AssocNumb;
+       del_all_sta_info->assoc_sta = assoc_sta;
        result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
 
        if (result)
-- 
2.6.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to