1 /* 2 * Copyright 2007, Marcus Overhagen. All rights reserved. 3 * 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef _PCI_FIXUP_H 7 #define _PCI_FIXUP_H 8 9 class PCI; 10 11 12 void pci_fixup_device(PCI *pci, uint8 domain, uint8 bus, uint8 device, 13 uint8 function); 14 15 #endif 16