diff options
Diffstat (limited to 'src/sys/include')
-rw-r--r-- | src/sys/include/io/pci/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/include/io/pci/pci.h b/src/sys/include/io/pci/pci.h index 8f65aa3..91fb02e 100644 --- a/src/sys/include/io/pci/pci.h +++ b/src/sys/include/io/pci/pci.h @@ -31,6 +31,7 @@ #define _PCI_PCI_H_ 1 #include <sys/types.h> +#include <sys/queue.h> /* PCI specific types */ typedef uint32_t pcireg_t; @@ -52,6 +53,7 @@ struct pci_device { uint8_t func; uint16_t vendor; uint16_t device; + TAILQ_ENTRY(pci_device) link; }; /* |