diff options
author | jkim <jkim@FreeBSD.org> | 2010-10-13 20:35:34 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-10-13 20:35:34 +0000 |
commit | 7af726f5cc604d3fcd32200efde74ce8464d8dbe (patch) | |
tree | 8b4567d2d969b27d3900a41337a0ad389480eae7 /utilities/utglobal.c | |
parent | c5863557e158eb3876688e611d5915c27657e18a (diff) | |
download | FreeBSD-src-7af726f5cc604d3fcd32200efde74ce8464d8dbe.zip FreeBSD-src-7af726f5cc604d3fcd32200efde74ce8464d8dbe.tar.gz |
Import ACPICA 20101013.
Diffstat (limited to 'utilities/utglobal.c')
-rw-r--r-- | utilities/utglobal.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utilities/utglobal.c b/utilities/utglobal.c index 3f82115..a7e1baa 100644 --- a/utilities/utglobal.c +++ b/utilities/utglobal.c @@ -244,7 +244,9 @@ ACPI_EXPORT_SYMBOL (AcpiFormatException) * 1) _SB_ is defined to be a device to allow \_SB_._INI to be run * during the initialization sequence. * 2) _TZ_ is defined to be a thermal zone in order to allow ASL code to - * perform a Notify() operation on it. + * perform a Notify() operation on it. 09/2010: Changed to type Device. + * This still allows notifies, but does not confuse host code that + * searches for valid ThermalZone objects. */ const ACPI_PREDEFINED_NAMES AcpiGbl_PreDefinedNames[] = { @@ -252,7 +254,7 @@ const ACPI_PREDEFINED_NAMES AcpiGbl_PreDefinedNames[] = {"_PR_", ACPI_TYPE_LOCAL_SCOPE, NULL}, {"_SB_", ACPI_TYPE_DEVICE, NULL}, {"_SI_", ACPI_TYPE_LOCAL_SCOPE, NULL}, - {"_TZ_", ACPI_TYPE_THERMAL, NULL}, + {"_TZ_", ACPI_TYPE_DEVICE, NULL}, {"_REV", ACPI_TYPE_INTEGER, (char *) ACPI_CA_SUPPORT_LEVEL}, {"_OS_", ACPI_TYPE_STRING, ACPI_OS_NAME}, {"_GL_", ACPI_TYPE_MUTEX, (char *) 1}, |