Commit 581f19dd authored by Chaitanya Kulkarni's avatar Chaitanya Kulkarni Committed by Christoph Hellwig

nvme-fabrics: remove unnecessary braces for case

Braces are not required for enum value NVME_SC_CONNECT_INVALID_PARAM
when used on the switch-case statement, remove the braces.
Signed-off-by: default avatarChaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: default avatarKeith Busch <kbusch@kernel.org>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 72b3eab4
...@@ -271,7 +271,7 @@ static void nvmf_log_connect_error(struct nvme_ctrl *ctrl, ...@@ -271,7 +271,7 @@ static void nvmf_log_connect_error(struct nvme_ctrl *ctrl,
int err_sctype = errval & ~NVME_SC_DNR; int err_sctype = errval & ~NVME_SC_DNR;
switch (err_sctype) { switch (err_sctype) {
case (NVME_SC_CONNECT_INVALID_PARAM): case NVME_SC_CONNECT_INVALID_PARAM:
if (offset >> 16) { if (offset >> 16) {
char *inv_data = "Connect Invalid Data Parameter"; char *inv_data = "Connect Invalid Data Parameter";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment