diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-17 21:54:03 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-17 21:54:03 -0400 |
commit | 26eba38bd53cc8ab83e96518085509c7d8ec39a2 (patch) | |
tree | acd276e9a7f9e81966e305c6ade651e27b1a5d6b /sys/include/dev/pci/pci.h | |
parent | 9b21a40bf2649a03b773d20f6e1dc9fd38432e15 (diff) |
kernel: pci: Add segment field
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev/pci/pci.h')
-rw-r--r-- | sys/include/dev/pci/pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/pci/pci.h b/sys/include/dev/pci/pci.h index 4bfacdd..1d8b3a6 100644 --- a/sys/include/dev/pci/pci.h +++ b/sys/include/dev/pci/pci.h @@ -54,6 +54,7 @@ struct pci_device { uint8_t slot; uint8_t func; + uint16_t segment; uint16_t msix_capoff; uint16_t device_id; uint16_t vendor_id; |