1
0
Fork 0

staging: wilc1000: handle_cfg_param: change data type of wid_cnt

This patch changes data type of wid_cnt from u8 to int.
This variable uses array index of struct wid_list so that it is better
to use int type.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Chaehyun Lim 2016-02-23 15:37:59 +09:00 committed by Greg Kroah-Hartman
parent a5f0fb5cab
commit 2746ca0866
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ static s32 handle_cfg_param(struct wilc_vif *vif,
s32 result = 0;
struct wid wid_list[32];
struct host_if_drv *hif_drv = vif->hif_drv;
u8 wid_cnt = 0;
int wid_cnt = 0;
down(&hif_drv->sem_cfg_values);