staging: wilc1000: use int type for counter variable
authorChaehyun Lim <chaehyun.lim@gmail.com>
Thu, 11 Feb 2016 04:46:23 +0000 (13:46 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:31:50 +0000 (19:31 -0800)
commit67ba5d6d6e12495f6c2f6ed260d13f4cf77caf1e
tree8960654e620e8fda108dff39bae0e96145e42902
parent6e944459aa868a274d07a50b3c7b774387624d94
staging: wilc1000: use int type for counter variable

counter is used as for-loop control variable and indicating index of
struct wid array so that it is better to use int type.
There is no need to set to 0 when it is declared at the top of this
function. It is initialized as 0 in for-loop statement.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_wlan.c