Allow resizing of ACPI tables

This commit is contained in:
Baptiste Wicht 2016-07-24 15:32:21 +02:00
parent c7a0a2ee19
commit 389e0846fb

View File

@ -70,7 +70,7 @@ void initialize_acpica(){
/* Initialize the ACPICA Table Manager and get all ACPI tables */ /* Initialize the ACPICA Table Manager and get all ACPI tables */
status = AcpiInitializeTables(nullptr, 16, FALSE); status = AcpiInitializeTables(nullptr, 16, true);
if (ACPI_FAILURE (status)){ if (ACPI_FAILURE (status)){
logging::logf(logging::log_level::ERROR, "acpica: Impossible to initialize tables: error: %s\n", AcpiGbl_ExceptionNames_Env[status].Name); logging::logf(logging::log_level::ERROR, "acpica: Impossible to initialize tables: error: %s\n", AcpiGbl_ExceptionNames_Env[status].Name);
return; return;