diff options
| author | Alok Tiwari <alok.a.tiwari@oracle.com> | 2025-06-25 07:16:33 +0300 |
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2025-07-17 14:38:07 +0300 |
| commit | b5cd5f1e50205831cb078f5c52359004eb1cbe74 (patch) | |
| tree | 883e37b631e9b6ee2da3697eff641280a01ef549 /include/linux | |
| parent | 2e7dd5c1a8ae9532530474e13dec3371b3db4ee0 (diff) | |
| download | linux-b5cd5f1e50205831cb078f5c52359004eb1cbe74.tar.xz | |
nvme: fix typo in status code constant for self-test in progress
Correct a typo error in the NVMe status code constant from
NVME_SC_SELT_TEST_IN_PROGRESS to NVME_SC_SELF_TEST_IN_PROGRESS to
accurately reflect its meaning.
Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/nvme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index b65a1b9f2116..655d194f8e72 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -2155,7 +2155,7 @@ enum { NVME_SC_NS_NOT_ATTACHED = 0x11a, NVME_SC_THIN_PROV_NOT_SUPP = 0x11b, NVME_SC_CTRL_LIST_INVALID = 0x11c, - NVME_SC_SELT_TEST_IN_PROGRESS = 0x11d, + NVME_SC_SELF_TEST_IN_PROGRESS = 0x11d, NVME_SC_BP_WRITE_PROHIBITED = 0x11e, NVME_SC_CTRL_ID_INVALID = 0x11f, NVME_SC_SEC_CTRL_STATE_INVALID = 0x120, |
