summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Base/usr/share/man/man7/boot_device_addressing.md2
-rw-r--r--Kernel/Storage/StorageDevice.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Base/usr/share/man/man7/boot_device_addressing.md b/Base/usr/share/man/man7/boot_device_addressing.md
index 021ace43ad..e002dc91c3 100644
--- a/Base/usr/share/man/man7/boot_device_addressing.md
+++ b/Base/usr/share/man/man7/boot_device_addressing.md
@@ -30,7 +30,7 @@ to address raw `StorageDevice`s:
```
ata0:0:0 [First ATA controller, ATA first primary channel, master device]
-nvme0:0 [First NVMe Controller, First NVMe Namespace]
+nvme0:1:0 [First NVMe Controller, First NVMe Namespace, Not Applicable]
ramdisk0 [First Ramdisk]
```
diff --git a/Kernel/Storage/StorageDevice.h b/Kernel/Storage/StorageDevice.h
index b66a94f062..08198f4792 100644
--- a/Kernel/Storage/StorageDevice.h
+++ b/Kernel/Storage/StorageDevice.h
@@ -46,7 +46,7 @@ public:
// For example, on a legacy ATA instance, one might connect an harddrive to the second IDE controller,
// to the Primary channel as a slave device, which translates to LUN 1:0:1.
// On NVMe, for example, connecting a second PCIe NVMe storage device as a sole NVMe namespace translates
- // to LUN 1:0:0.
+ // to LUN 1:1:0.
struct LUNAddress {
u32 controller_id;
u32 target_id;