diff options
Diffstat (limited to 'drivers/acpi/acpica/tbxface.c')
-rw-r--r-- | drivers/acpi/acpica/tbxface.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/tbxface.c b/drivers/acpi/acpica/tbxface.c index 30565100b94c..f5378fc302b3 100644 --- a/drivers/acpi/acpica/tbxface.c +++ b/drivers/acpi/acpica/tbxface.c | |||
@@ -532,6 +532,16 @@ static acpi_status acpi_tb_load_namespace(void) | |||
532 | } | 532 | } |
533 | 533 | ||
534 | /* | 534 | /* |
535 | * Optionally copy the entire DSDT to local memory (instead of simply | ||
536 | * mapping it.) There are some BIOSs that corrupt or replace the original | ||
537 | * DSDT, creating the need for this option. Default is FALSE, do not copy | ||
538 | * the DSDT. | ||
539 | */ | ||
540 | if (acpi_gbl_copy_dsdt_locally) { | ||
541 | acpi_tb_copy_dsdt(acpi_gbl_DSDT); | ||
542 | } | ||
543 | |||
544 | /* | ||
535 | * Save the original DSDT header for detection of table corruption | 545 | * Save the original DSDT header for detection of table corruption |
536 | * and/or replacement of the DSDT from outside the OS. | 546 | * and/or replacement of the DSDT from outside the OS. |
537 | */ | 547 | */ |