diff options
author | Ian Moffett <ian@osmora.org> | 2024-07-14 00:22:00 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-07-14 00:22:00 -0400 |
commit | 65d87c37606fb01b12d7d8271bbc14a94218f0c1 (patch) | |
tree | c92e118a5efe35d81ac4f80808a36b2119bb4e4e /sys | |
parent | a2f8265e5d437e49244ffeb2926b46c056adb9fb (diff) |
kernel: nvme: Fix NVMe op definition
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/dev/ic/nvmevar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/include/dev/ic/nvmevar.h b/sys/include/dev/ic/nvmevar.h index ee829dc..a18cb36 100644 --- a/sys/include/dev/ic/nvmevar.h +++ b/sys/include/dev/ic/nvmevar.h @@ -39,7 +39,7 @@ /* Identify CNS values */ #define ID_CNS_CTRL 0x01 /* Identify controller */ -#define ID_CNS_NSID_LIST 0x07 /* Active NSID list */ +#define ID_CNS_NSID_LIST 0x02 /* Active NSID list */ /* I/O commands */ #define NVME_OP_WRITE 0x01 |