summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wilc1000
diff options
context:
space:
mode:
authorChaehyun Lim2015-10-28 00:19:21 +0100
committerGreg Kroah-Hartman2015-10-29 00:50:45 +0100
commitfd74146158b2d6f5865eedc29cc600d4b71cf53e (patch)
treed15562842e94969cd1d679d9ed899315962f07a5 /drivers/staging/wilc1000
parentstaging: wilc1000: fix parameter name of function declaration (diff)
downloadkernel-qcow2-linux-fd74146158b2d6f5865eedc29cc600d4b71cf53e.tar.gz
kernel-qcow2-linux-fd74146158b2d6f5865eedc29cc600d4b71cf53e.tar.xz
kernel-qcow2-linux-fd74146158b2d6f5865eedc29cc600d4b71cf53e.zip
staging: wilc1000: replace u8 with int.
This patch changes data type of variable i from u8 to int. It is used as index of an array to print its content. It's better to use as data type of int. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wilc1000')
-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 a29a3637c383..3fd6914f7ccc 100644
--- a/drivers/staging/wilc1000/host_interface.c
+++ b/drivers/staging/wilc1000/host_interface.c
@@ -3148,7 +3148,7 @@ int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
{
int result = 0;
struct host_if_msg msg;
- u8 i;
+ int i;
if (!hif_drv) {
PRINT_ER("driver is null\n");