staging: wilc1000: replace u32 with int
authorChaehyun Lim <chaehyun.lim@gmail.com>
Tue, 22 Dec 2015 00:49:04 +0000 (09:49 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 23:05:35 +0000 (15:05 -0800)
The data type of variable i changes u32 to int.
It is used as array index to copy some data with memcpy function
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>
drivers/staging/wilc1000/host_interface.c

index c976c1f202f66342d14f7481024460d08d873f28..3ad4b0e09d889ce895120b6245e21ac28a7c4b93 100644 (file)
@@ -3297,7 +3297,7 @@ int wilc_set_pmkid_info(struct wilc_vif *vif,
        int result = 0;
        struct host_if_msg msg;
        struct host_if_drv *hif_drv = vif->hif_drv;
-       u32 i;
+       int i;
 
        if (!hif_drv) {
                PRINT_ER("driver is null\n");
This page took 0.026784 seconds and 5 git commands to generate.