summaryrefslogtreecommitdiff
path: root/source/components/hardware
diff options
context:
space:
mode:
authoraystarik <aystarik>2005-07-10 19:34:02 +0000
committeraystarik <aystarik>2005-07-10 19:34:02 +0000
commit077e244b27219f6833482abe592f5a6d55be3b53 (patch)
tree4bf6bab6ea15b5753d744b63e00889d6fedab7a4 /source/components/hardware
parent1d76b0d77150ec605ecf7792a55c6bf8407406c6 (diff)
downloadacpica-077e244b27219f6833482abe592f5a6d55be3b53.tar.gz
Moved defines to header files
date 2005.03.25.06.41.00; author rmoore1; state Exp;
Diffstat (limited to 'source/components/hardware')
-rw-r--r--source/components/hardware/hwsleep.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/components/hardware/hwsleep.c b/source/components/hardware/hwsleep.c
index 6ecf89390..0bf851c81 100644
--- a/source/components/hardware/hwsleep.c
+++ b/source/components/hardware/hwsleep.c
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Name: hwsleep.c - ACPI Hardware Sleep/Wake Interface
- * $Revision: 1.77 $
+ * $Revision: 1.76 $
*
*****************************************************************************/
@@ -369,14 +369,14 @@ AcpiEnterSleepState (
* 1) Disable/Clear all GPEs
* 2) Enable all wakeup GPEs
*/
- Status = AcpiHwDisableAllGpes ();
+ Status = AcpiHwDisableAllGpes (ACPI_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
}
AcpiGbl_SystemAwakeAndRunning = FALSE;
- Status = AcpiHwEnableAllWakeupGpes ();
+ Status = AcpiHwEnableAllWakeupGpes (ACPI_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
@@ -531,14 +531,14 @@ AcpiEnterSleepStateS4bios (
* 1) Disable/Clear all GPEs
* 2) Enable all wakeup GPEs
*/
- Status = AcpiHwDisableAllGpes ();
+ Status = AcpiHwDisableAllGpes (ACPI_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
}
AcpiGbl_SystemAwakeAndRunning = FALSE;
- Status = AcpiHwEnableAllWakeupGpes ();
+ Status = AcpiHwEnableAllWakeupGpes (ACPI_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
@@ -671,14 +671,14 @@ AcpiLeaveSleepState (
* 1) Disable/Clear all GPEs
* 2) Enable all runtime GPEs
*/
- Status = AcpiHwDisableAllGpes ();
+ Status = AcpiHwDisableAllGpes (ACPI_NOT_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
}
AcpiGbl_SystemAwakeAndRunning = TRUE;
- Status = AcpiHwEnableAllRuntimeGpes ();
+ Status = AcpiHwEnableAllRuntimeGpes (ACPI_NOT_ISR);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);