From 1179d01e765f46e06aa3039ea1a2a397511e6018 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sun, 16 Jun 2024 13:12:52 +0200 Subject: [PATCH] pcid: Add pretty string for the NVME device type --- pcid/src/pci_header.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pcid/src/pci_header.rs b/pcid/src/pci_header.rs index 76154fe5ad..34e3dca46f 100644 --- a/pcid/src/pci_header.rs +++ b/pcid/src/pci_header.rs @@ -129,6 +129,7 @@ impl PciHeader { 0x30 => string.push_str(" XHCI"), _ => (), }, + DeviceType::NvmeController => string.push_str(" NVME"), _ => (), } string