diff options
author | njl <njl@FreeBSD.org> | 2004-12-03 08:01:09 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2004-12-03 08:01:09 +0000 |
commit | beb94b5a212e644c63b1ec1d98f756d1abf4754e (patch) | |
tree | 46dda469c6513ac056a47895a01c80f158c309f9 | |
parent | 8d8086b5306855ea6aaadf4bca1efb8cf3057b86 (diff) | |
download | FreeBSD-src-beb94b5a212e644c63b1ec1d98f756d1abf4754e.zip FreeBSD-src-beb94b5a212e644c63b1ec1d98f756d1abf4754e.tar.gz |
Enable the relaxed behavior for op regions and other workarounds for
non-standard BIOSen. We used to implement this in local patches but
now that ACPI-CA has merged/re-implemented most of our fixes, they were
no longer needed and we just needed to turn this knob on. Also, remove
an unnecessary cast.
Tested by: phk
-rw-r--r-- | sys/dev/acpica/acpi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index 8564bce..8ba0c33 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -284,7 +284,8 @@ acpi_Startup(void) * Set the globals from our tunables. This is needed because ACPI-CA * uses UINT8 for some values and we have no tunable_byte. */ - AcpiGbl_AllMethodsSerialized = (UINT8)acpi_serialize_methods; + AcpiGbl_AllMethodsSerialized = acpi_serialize_methods; + AcpiGbl_EnableInterpreterSlack = TRUE; /* Start up the ACPI CA subsystem. */ if (ACPI_FAILURE(error = AcpiInitializeSubsystem())) { |