diff options
Diffstat (limited to 'events/evgpe.c')
-rw-r--r-- | events/evgpe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/events/evgpe.c b/events/evgpe.c index 95cb9fa7ea8cc..17738b384040a 100644 --- a/events/evgpe.c +++ b/events/evgpe.c @@ -543,7 +543,7 @@ AcpiEvGpeDetect ( /* Read the Status Register */ - Status = AcpiRead (&StatusReg, &GpeRegisterInfo->StatusAddress); + Status = AcpiHwRead (&StatusReg, &GpeRegisterInfo->StatusAddress); if (ACPI_FAILURE (Status)) { goto UnlockAndExit; @@ -551,7 +551,7 @@ AcpiEvGpeDetect ( /* Read the Enable Register */ - Status = AcpiRead (&EnableReg, &GpeRegisterInfo->EnableAddress); + Status = AcpiHwRead (&EnableReg, &GpeRegisterInfo->EnableAddress); if (ACPI_FAILURE (Status)) { goto UnlockAndExit; |