diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-12 00:04:25 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-12 00:04:25 -0400 |
commit | f874dae43e8bb09cb15c652add7589899ed4799f (patch) | |
tree | ba3020eca7a38a7cc2271c35b7457b57a6e5c551 /sys/include/dev/pci/pci.h | |
parent | 952caa186852ccf3fa82719d3e484918e89d17a8 (diff) |
kernel: pci: Add support for PCI Express
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 a4de162..144b500 100644 --- a/sys/include/dev/pci/pci.h +++ b/sys/include/dev/pci/pci.h @@ -62,6 +62,7 @@ struct pci_device { uint8_t pci_subclass; uint8_t prog_if; uint8_t hdr_type; + uint8_t pci_express : 1; uint8_t pri_bus; uint8_t sec_bus; |