summaryrefslogtreecommitdiffstats
path: root/source/tools/acpiexec/aeexec.c
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2013-06-26 19:01:10 +0000
committerjkim <jkim@FreeBSD.org>2013-06-26 19:01:10 +0000
commit7aca7201724cb02a2a0541bd3ad2c0aca23dd076 (patch)
tree274ff6113dbdc6cbbbf50dc30d0527fb9cb0fc55 /source/tools/acpiexec/aeexec.c
parentaf69f95bba3597db53a980597cfd371c9f6ee7cf (diff)
downloadFreeBSD-src-7aca7201724cb02a2a0541bd3ad2c0aca23dd076.zip
FreeBSD-src-7aca7201724cb02a2a0541bd3ad2c0aca23dd076.tar.gz
Import ACPICA 20130626.
Diffstat (limited to 'source/tools/acpiexec/aeexec.c')
-rw-r--r--source/tools/acpiexec/aeexec.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/tools/acpiexec/aeexec.c b/source/tools/acpiexec/aeexec.c
index 4c7cb4e..be4d8d6 100644
--- a/source/tools/acpiexec/aeexec.c
+++ b/source/tools/acpiexec/aeexec.c
@@ -588,7 +588,6 @@ AeMiscellaneousTests (
AE_CHECK_OK (AcpiLoadTable, Status);
}
-
AeHardwareInterfaces ();
AeGenericRegisters ();
AeSetupConfiguration (Ssdt3Code);
@@ -597,6 +596,8 @@ AeMiscellaneousTests (
AeTestPackageArgument ();
AeMutexInterfaces ();
+ /* Test _OSI install/remove */
+
Status = AcpiInstallInterface ("");
AE_CHECK_STATUS (AcpiInstallInterface, Status, AE_BAD_PARAMETER);
@@ -618,6 +619,10 @@ AeMiscellaneousTests (
Status = AcpiInstallInterface ("AnotherTestString");
AE_CHECK_OK (AcpiInstallInterface, Status);
+ /* Test _OSI execution */
+
+ Status = ExecuteOSI ("Extended Address Space Descriptor", 0xFFFFFFFF);
+ AE_CHECK_OK (ExecuteOSI, Status);
Status = ExecuteOSI ("Windows 2001", 0xFFFFFFFF);
AE_CHECK_OK (ExecuteOSI, Status);
OpenPOWER on IntegriCloud