3 * arch/x86/pci.h - x86 PCI Bus Access
\r
7 #include <drv_pci_int.h>
\r
10 Uint32 PCI_CfgReadDWord(Uint32 Address)
\r
12 Address |= 0x80000000;
\r
13 outd(0xCF8, Address);
\r
17 void PCI_CfgWriteDWord(Uint32 Address, Uint32 Data)
\r
19 Address |= 0x80000000;
\r
20 outd(0xCF8, Address);
\r