1*433d6423SLionel Sambuc #ifndef PCI_HELPER 2*433d6423SLionel Sambuc #define PCI_HELPER 3*433d6423SLionel Sambuc 4*433d6423SLionel Sambuc unsigned pci_inb(u16_t port); 5*433d6423SLionel Sambuc unsigned pci_inw(u16_t port); 6*433d6423SLionel Sambuc unsigned pci_inl(u16_t port); 7*433d6423SLionel Sambuc 8*433d6423SLionel Sambuc void pci_outb(u16_t port, u8_t value); 9*433d6423SLionel Sambuc void pci_outw(u16_t port, u16_t value); 10*433d6423SLionel Sambuc void pci_outl(u16_t port, u32_t value); 11*433d6423SLionel Sambuc 12*433d6423SLionel Sambuc #endif 13