OSDN Git Service

airo: remove unused variables len and dev and clean up formatting
authorColin Ian King <colin.king@canonical.com>
Mon, 9 Jul 2018 13:38:43 +0000 (14:38 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 31 Jul 2018 07:17:19 +0000 (10:17 +0300)
Variables len and dev assigned values but are never used hence they
are redundant and can be removed.  Also add in white space in for-loop
and remove some { } braces on if statement.

Cleans up clang warnings:
warning: variable 'len' set but not used [-Wunused-but-set-variable]
warning: variable 'dev' set but not used [-Wunused-but-set-variable]

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/cisco/airo.c
drivers/net/wireless/cisco/airo_cs.c

index 72046e1..04dd7a9 100644 (file)
@@ -3419,7 +3419,7 @@ done:
 
 static void airo_handle_tx(struct airo_info *ai, u16 status)
 {
-       int i, len = 0, index = -1;
+       int i, index = -1;
        u16 fid;
 
        if (test_bit(FLAG_MPI, &ai->flags)) {
@@ -3443,11 +3443,9 @@ static void airo_handle_tx(struct airo_info *ai, u16 status)
 
        fid = IN4500(ai, TXCOMPLFID);
 
-       for(i = 0; i < MAX_FIDS; i++) {
-               if ((ai->fids[i] & 0xffff) == fid) {
-                       len = ai->fids[i] >> 16;
+       for (i = 0; i < MAX_FIDS; i++) {
+               if ((ai->fids[i] & 0xffff) == fid)
                        index = i;
-               }
        }
 
        if (index != -1) {
index d9ed22b..3718f95 100644 (file)
@@ -102,11 +102,8 @@ static int airo_cs_config_check(struct pcmcia_device *p_dev, void *priv_data)
 
 static int airo_config(struct pcmcia_device *link)
 {
-       struct local_info *dev;
        int ret;
 
-       dev = link->priv;
-
        dev_dbg(&link->dev, "airo_config\n");
 
        link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_VPP |