summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-01-27 22:22:20 -0500
committerIan Moffett <ian@osmora.org>2025-01-27 22:22:20 -0500
commit00fcbc826613790ea02a5967adbdf34d189236ce (patch)
treea81b9400e0773aeb1ff90084205372a21ad3b534
parentce697974b68a265b0ee02ef76b4a6d8d31f4f365 (diff)
kernel: pci: Add missing pci_msix_eoi() prototype
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--sys/include/dev/pci/pci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/pci/pci.h b/sys/include/dev/pci/pci.h
index 497bfc7..b5bb32c 100644
--- a/sys/include/dev/pci/pci.h
+++ b/sys/include/dev/pci/pci.h
@@ -77,6 +77,7 @@ int pci_map_bar(struct pci_device *dev, uint8_t barno, void **vap);
void pci_writel(struct pci_device *dev, uint32_t offset, pcireg_t val);
int pci_enable_msix(struct pci_device *dev, const struct msi_intr *intr);
+void pci_msix_eoi(void);
int pci_init(void);
#endif /* !_PCI_H_ */