net: mv88e6xxx: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Wed, 9 Dec 2020 13:39:38 +0000 (21:39 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Dec 2020 00:23:08 +0000 (16:23 -0800)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/mv88e6xxx/global1_atu.c

index bac9a8a68e500f8e680ff089edf1b877e90591ab..40bd67a5c8e932d70af7fff8cba5f641e18653ee 100644 (file)
@@ -333,7 +333,7 @@ static int mv88e6xxx_g1_atu_move(struct mv88e6xxx_chip *chip, u16 fid,
        mask = chip->info->atu_move_port_mask;
        shift = bitmap_weight(&mask, 16);
 
-       entry.state = 0xf, /* Full EntryState means Move */
+       entry.state = 0xf; /* Full EntryState means Move */
        entry.portvec = from_port & mask;
        entry.portvec |= (to_port & mask) << shift;