I was being lazy, as pointe out by mmlr. It is much better to copy DSDT always do you don't need to figure out if you need to toggle that switch.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42896 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Fredrik Holmqvist 2011-10-21 19:42:46 +00:00
parent c5862c76d3
commit 97d5dc0a3c
2 changed files with 1 additions and 6 deletions

View File

@ -64,10 +64,6 @@ load_symbols true
# Avoids running _INI and _STA methods and final object initialization,
# which may be used to for debugging ACPI issues, false by default
#acpi_copy_dsdt true
# Makes a copy of the DSDT during boot, to work around BIOSes that
# corrupt it, false by default
#disable_ioapic true
# Disables IO-APIC support, enabled by default

View File

@ -90,6 +90,7 @@ acpi_std_ops(int32 op,...)
void *settings;
bool acpiDisabled = false;
bool acpiAvoidFullInit = false;
AcpiGbl_CopyDsdtLocally = true;
settings = load_driver_settings("kernel");
if (settings != NULL) {
@ -97,8 +98,6 @@ acpi_std_ops(int32 op,...)
true, true);
acpiAvoidFullInit = get_driver_boolean_parameter(settings,
"acpi_avoid_full_init", false, false);
AcpiGbl_CopyDsdtLocally = get_driver_boolean_parameter(settings,
"acpi_copy_dsdt", false, false);
unload_driver_settings(settings);
}