From: Damien Le Moal Date: Thu, 22 Jun 2023 07:53:07 +0000 (+0900) Subject: nvme: host: fix command name spelling X-Git-Tag: v6.6.17~4455^2~1^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86da1bae4c64ab3dcbdda0c77ce37c9bf47a501f;p=platform%2Fkernel%2Flinux-rpi.git nvme: host: fix command name spelling Correctly spell "Zeroes" in nvme_cmd_write_zeroes command name. Signed-off-by: Damien Le Moal Reviewed-by: Christoph Hellwig Reviewed-by: Chaitanya Kulkarni Signed-off-by: Keith Busch --- diff --git a/drivers/nvme/host/constants.c b/drivers/nvme/host/constants.c index bc523ca..44de4f6 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",