lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20201031134638.2135060-1-trix@redhat.com> Date: Sat, 31 Oct 2020 06:46:38 -0700 From: trix@...hat.com To: leon@...nel.org, dledford@...hat.com, jgg@...pe.ca Cc: linux-rdma@...r.kernel.org, linux-kernel@...r.kernel.org, Tom Rix <trix@...hat.com> Subject: [PATCH] RDMA/mlx5: remove unneeded semicolon From: Tom Rix <trix@...hat.com> A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <trix@...hat.com> --- drivers/infiniband/hw/mlx5/qp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c index 600e056798c0..6aad0f39c50c 100644 --- a/drivers/infiniband/hw/mlx5/qp.c +++ b/drivers/infiniband/hw/mlx5/qp.c @@ -3102,7 +3102,7 @@ static int ib_to_mlx5_rate_map(u8 rate) return 5; default: return rate + MLX5_STAT_RATE_OFFSET; - }; + } return 0; } -- 2.18.1
Powered by blists - more mailing lists