]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ocelot: remove unused variable 'rc' in vcap_cmd()
authorMao Wenan <maowenan@huawei.com>
Sun, 9 Jun 2019 07:11:26 +0000 (15:11 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 10 Jun 2019 03:11:53 +0000 (20:11 -0700)
Fixes gcc '-Wunused-but-set-variable' warning:

drivers/net/ethernet/mscc/ocelot_ace.c: In function ‘vcap_cmd’:
drivers/net/ethernet/mscc/ocelot_ace.c:108:6: warning: variable ‘rc’ set
but not used [-Wunused-but-set-variable]
  int rc;
      ^
It's never used since introduction in commit b596229448dd ("net: mscc:
ocelot: Add support for tcam")

Signed-off-by: Mao Wenan <maowenan@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mscc/ocelot_ace.c

index f74b98f7d8d13471a4ab33a4ca629e5efabc6713..39aca1ab46878330e60a939550dc7e52089eb8b3 100644 (file)
@@ -105,7 +105,6 @@ static void vcap_cmd(struct ocelot *oc, u16 ix, int cmd, int sel)
        u32 value = (S2_CORE_UPDATE_CTRL_UPDATE_CMD(cmd) |
                     S2_CORE_UPDATE_CTRL_UPDATE_ADDR(ix) |
                     S2_CORE_UPDATE_CTRL_UPDATE_SHOT);
-       int rc;
 
        if ((sel & VCAP_SEL_ENTRY) && ix >= vcap_is2.entry_count)
                return;
@@ -120,7 +119,7 @@ static void vcap_cmd(struct ocelot *oc, u16 ix, int cmd, int sel)
                value |= S2_CORE_UPDATE_CTRL_UPDATE_CNT_DIS;
 
        ocelot_write(oc, value, S2_CORE_UPDATE_CTRL);
-       rc = readx_poll_timeout(vcap_s2_read_update_ctrl, oc, value,
+       readx_poll_timeout(vcap_s2_read_update_ctrl, oc, value,
                                (value & S2_CORE_UPDATE_CTRL_UPDATE_SHOT) == 0,
                                10, 100000);
 }