aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/utglobal.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/utglobal.c')
-rw-r--r--sys/contrib/dev/acpica/utglobal.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/utglobal.c b/sys/contrib/dev/acpica/utglobal.c
index 1a88f7c33862..39ebd58a269e 100644
--- a/sys/contrib/dev/acpica/utglobal.c
+++ b/sys/contrib/dev/acpica/utglobal.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: utglobal - Global variables for the ACPI subsystem
- * $Revision: 191 $
+ * $Revision: 193 $
*
*****************************************************************************/
@@ -9,7 +9,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -251,7 +251,7 @@ BOOLEAN AcpiGbl_Shutdown = TRUE;
const UINT8 AcpiGbl_DecodeTo8bit [8] = {1,2,4,8,16,32,64,128};
-const char *AcpiGbl_DbSleepStates[ACPI_S_STATE_COUNT] = {
+const char *AcpiGbl_SleepStateNames[ACPI_S_STATE_COUNT] = {
"\\_S0_",
"\\_S1_",
"\\_S2_",
@@ -259,6 +259,11 @@ const char *AcpiGbl_DbSleepStates[ACPI_S_STATE_COUNT] = {
"\\_S4_",
"\\_S5_"};
+const char *AcpiGbl_HighestDstateNames[4] = {
+ "_S1D",
+ "_S2D",
+ "_S3D",
+ "_S4D"};
/******************************************************************************
*