diff options
| author | Zheng Yongjun <[email protected]> | 2020-12-09 21:34:41 +0800 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-12-09 16:23:08 -0800 |
| commit | 873d2f121628f5c69251fd4fd7435c55c898b32d (patch) | |
| tree | 9ce73f11e9578ba49b38a469e99ee24d873d5bc8 | |
| parent | eba251f2e6bc068133b5a1d5c57b552c4aeec534 (diff) | |
net: mlx5: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Zheng Yongjun <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c index f68a4afeefb8..2f6a0ae20650 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c @@ -484,7 +484,7 @@ mlx5_eswitch_add_fwd_rule(struct mlx5_eswitch *esw, } } dest[i].type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE; - dest[i].ft = fwd_fdb, + dest[i].ft = fwd_fdb; i++; mlx5_eswitch_set_rule_source_port(esw, spec, esw_attr); |