nvme-core: remove unnecessary semicolon

It is not a good practice to have a semicolon at the end of the
function definition. Remove it from nvme_pr_type().

Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Chaitanya Kulkarni 2022-01-18 23:49:54 -08:00 committed by Christoph Hellwig
parent e65b831a1e
commit 50ab19d89f

View File

@ -1979,7 +1979,7 @@ static char nvme_pr_type(enum pr_type type)
default:
return 0;
}
};
}
static int nvme_send_ns_head_pr_command(struct block_device *bdev,
struct nvme_command *c, u8 data[16])