diff options
author | Damien Le Moal <dlemoal@kernel.org> | 2023-06-22 10:53:07 +0300 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2023-06-27 18:14:11 +0300 |
commit | 86da1bae4c64ab3dcbdda0c77ce37c9bf47a501f (patch) | |
tree | 574b5c279e87929c86ac3c8abb52d45dc32c61f4 /drivers/nvme/host | |
parent | 9d16d264775b9a10f3f5b5db768d7f51294b2a63 (diff) | |
download | linux-86da1bae4c64ab3dcbdda0c77ce37c9bf47a501f.tar.xz |
nvme: host: fix command name spelling
Correctly spell "Zeroes" in nvme_cmd_write_zeroes command name.
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme/host')
-rw-r--r-- | drivers/nvme/host/constants.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c index bc523ca02254..44de4f6a4f4c 100644 --- a/drivers/nvme/host/constants.c +++ b/drivers/nvme/host/constants.c @@ -12,7 +12,7 @@ static const char * const nvme_ops[] = { [nvme_cmd_read] = "Read", [nvme_cmd_write_uncor] = "Write Uncorrectable", [nvme_cmd_compare] = "Compare", - [nvme_cmd_write_zeroes] = "Write Zeros", + [nvme_cmd_write_zeroes] = "Write Zeroes", [nvme_cmd_dsm] = "Dataset Management", [nvme_cmd_verify] = "Verify", [nvme_cmd_resv_register] = "Reservation Register", |