docs: nvme: Fix formatting issue

Fix an improperly formatted bullet list due to missing empty line.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
This commit is contained in:
Benjamin Cabé 2024-05-07 18:18:13 +02:00 committed by Anas Nashif
parent 586882f003
commit 5b98c29d72

View file

@ -12,9 +12,10 @@ Driver design
************* *************
The driver is sliced up in 3 main parts: The driver is sliced up in 3 main parts:
- NVMe controller :zephyr_file:`drivers/disk/nvme/nvme_controller.c`
- NVMe commands :zephyr_file:`drivers/disk/nvme/nvme_cmd.c` - NVMe controller: :zephyr_file:`drivers/disk/nvme/nvme_controller.c`
- NVMe namespace :zephyr_file:`drivers/disk/nvme/nvme_namespace.c` - NVMe commands: :zephyr_file:`drivers/disk/nvme/nvme_cmd.c`
- NVMe namespace: :zephyr_file:`drivers/disk/nvme/nvme_namespace.c`
Where the NVMe controller is the root of the device driver. This is the one that will get device driver instances. Where the NVMe controller is the root of the device driver. This is the one that will get device driver instances.
Note that this is only what DTS describes: the NVMe controller, and none of its namespaces (disks). Note that this is only what DTS describes: the NVMe controller, and none of its namespaces (disks).