diff options
| author | Chaitanya Kulkarni <[email protected]> | 2022-01-18 23:49:54 -0800 |
|---|---|---|
| committer | Christoph Hellwig <[email protected]> | 2022-02-28 13:45:04 +0200 |
| commit | 50ab19d89feaf4ebeca6872b46da4b503eee20c1 (patch) | |
| tree | 30bece4d29ec795d9eb1fa9476f35e08768aaebf | |
| parent | e65b831a1e191caff3fc0d06bc7019cdaf8f868e (diff) | |
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 <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Signed-off-by: Christoph Hellwig <[email protected]>
| -rw-r--r-- | drivers/nvme/host/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 5e0bfda04bd7..a1d793e79982 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]) |