mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 21:44:23 -04:00
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
06e682b06e
commit
cc971eec56
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user