From: Chaitanya Kulkarni Date: Wed, 19 Jan 2022 07:49:54 +0000 (-0800) Subject: nvme-core: remove unnecessary semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=50ab19d89feaf4ebeca6872b46da4b503eee20c1;p=linux.git 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 Reviewed-by: Sagi Grimberg Signed-off-by: Christoph Hellwig --- diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 5e0bfda04bd7b..a1d793e799825 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -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])