RDMA/mlx5: Remove unneeded semicolon

A semicolon is not needed after a switch statement.

Link: https://lore.kernel.org/r/20201031134638.2135060-1-trix@redhat.com
Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
This commit is contained in:
Tom Rix 2020-10-31 06:46:38 -07:00 committed by Jason Gunthorpe
parent 0583531bb9
commit 7f1d2dfa30
1 changed files with 1 additions and 1 deletions

View File

@ -3078,7 +3078,7 @@ static int ib_to_mlx5_rate_map(u8 rate)
return 5;
default:
return rate + MLX5_STAT_RATE_OFFSET;
};
}
return 0;
}