aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaehyun Lim <chaehyun.lim@gmail.com>2016-01-03 17:35:53 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-03 15:11:00 -0800
commitcc971eec560bdde8ff0dbc68ebeea3056892ba60 (patch)
tree30c708ca83547d770fd6ae119df7b934e0251ee5
parentstaging: wilc1000: rename au8Zero_Buff in wilc_del_allstation (diff)
staging: wilc1000: use int instead of u32
The variable i is used as array index so that it is better to use data type of int. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/host_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c
index a3f120aebf04..c0f30a29cc9b 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -4306,7 +4306,7 @@ int wilc_del_allstation(struct wilc_vif *vif, u8 mac_addr[][ETH_ALEN])
struct del_all_sta *del_all_sta_info = &msg.body.del_all_sta_info;
struct host_if_drv *hif_drv = vif->hif_drv;
u8 zero_addr[ETH_ALEN] = {0};
- u32 i;
+ int i;
u8 u8AssocNumb = 0;
if (!hif_drv) {