Reads an 8-bit PCI configuration register and saves the value in the S3 script to be replayed on S3 resume. Reads and returns the 8-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(). @param Address Address that encodes the PCI Bus, Device, Function
| 95 | |
| 96 | **/ |
| 97 | UINT8 |
| 98 | EFIAPI |
| 99 | S3PciRead8 ( |
| 100 | IN UINTN Address |
| 101 | ) |
| 102 | { |
| 103 | return InternalSavePciWrite8ValueToBootScript (Address, PciRead8 (Address)); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | Writes an 8-bit PCI configuration register and saves the value in the S3 |
nothing calls this directly
no test coverage detected