]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
net: mvneta: Remove unused variable i
authorColin Ian King <colin.i.king@gmail.com>
Fri, 28 Oct 2022 12:36:24 +0000 (13:36 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Oct 2022 11:47:31 +0000 (11:47 +0000)
Variable i is just being incremented and it's never used anywhere else. The
variable and the increment are redundant so remove it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvneta.c

index 81dc57a69fd0a6c6599ef6dc864839e34c81cb2d..05ff3c58087e763cccfd41af19653961d426be03 100644 (file)
@@ -4266,7 +4266,7 @@ static void mvneta_mdio_remove(struct mvneta_port *pp)
  */
 static void mvneta_percpu_elect(struct mvneta_port *pp)
 {
-       int elected_cpu = 0, max_cpu, cpu, i = 0;
+       int elected_cpu = 0, max_cpu, cpu;
 
        /* Use the cpu associated to the rxq when it is online, in all
         * the other cases, use the cpu 0 which can't be offline.
@@ -4306,8 +4306,6 @@ static void mvneta_percpu_elect(struct mvneta_port *pp)
                 */
                smp_call_function_single(cpu, mvneta_percpu_unmask_interrupt,
                                         pp, true);
-               i++;
-
        }
 };