diff options
author | Zheng Yongjun <zhengyongjun3@huawei.com> | 2020-12-09 14:39:38 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-12-10 01:23:08 +0100 |
commit | 59d4c93d31d91b8256535a4bb388738d320b9c03 (patch) | |
tree | 64845195a68b2848be91b6b2564298686b58182d /drivers/net/dsa/mv88e6xxx/global1_atu.c | |
parent | net: thunderbolt: convert comma to semicolon (diff) | |
download | linux-59d4c93d31d91b8256535a4bb388738d320b9c03.tar.xz linux-59d4c93d31d91b8256535a4bb388738d320b9c03.zip |
net: mv88e6xxx: convert comma to semicolon
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>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx/global1_atu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/global1_atu.c b/drivers/net/dsa/mv88e6xxx/global1_atu.c index bac9a8a68e50..40bd67a5c8e9 100644 --- a/drivers/net/dsa/mv88e6xxx/global1_atu.c +++ b/drivers/net/dsa/mv88e6xxx/global1_atu.c @@ -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; |