Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc971eec authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

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: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 06e682b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {