xref: /haiku/src/add-ons/kernel/bus_managers/pci/pci_fixup.h (revision 4f2fd49bdc6078128b1391191e4edac647044c3d)
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 void
12 pci_fixup_device(PCI *pci, int domain, uint8 bus, uint8 device, uint8 function);
13 
14 #endif
15