Reads a 32-bit PCI configuration register. Reads and returns the 32-bit PCI configuration register specified by Address. This function must guarantee that all PCI read and write operations are serialized. If Address > 0x0FFFFFFF, then ASSERT(). If Address is not aligned on a 32-bit boundary, then ASSERT(). @param Address The address that encodes the PCI Bus, Device, Functi
| 736 | |
| 737 | **/ |
| 738 | UINT32 |
| 739 | EFIAPI |
| 740 | PciRead32 ( |
| 741 | IN UINTN Address |
| 742 | ) |
| 743 | { |
| 744 | return PciCf8Read32 (Address); |
| 745 | } |
| 746 | |
| 747 | /** |
| 748 | Writes a 32-bit PCI configuration register. |
no test coverage detected