From: Bob Moore Date: Fri, 2 Feb 2007 16:48:24 +0000 (+0300) Subject: ACPICA: Fix for incorrect parameter passed to AcpiTbDeleteTable during table load. X-Git-Tag: v2.6.21-rc1~92^2~32^2^2^2~9 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=035f994b3ccfcfc555f838e2f33a2e49721e8533;p=powerpc.git ACPICA: Fix for incorrect parameter passed to AcpiTbDeleteTable during table load. Bad pointer was passed in the case where the DSDT is overridden. Signed-off-by: Alexey Starikovskiy Signed-off-by: Len Brown --- diff --git a/drivers/acpi/tables/tbxface.c b/drivers/acpi/tables/tbxface.c index 84a80891d2..807978d538 100644 --- a/drivers/acpi/tables/tbxface.c +++ b/drivers/acpi/tables/tbxface.c @@ -524,7 +524,8 @@ static acpi_status acpi_tb_load_namespace(void) /* * DSDT table has been found */ - acpi_tb_delete_table(ACPI_TABLE_INDEX_DSDT); + acpi_tb_delete_table(&acpi_gbl_root_table_list. + tables[ACPI_TABLE_INDEX_DSDT]); acpi_gbl_root_table_list.tables[ACPI_TABLE_INDEX_DSDT].pointer = table; acpi_gbl_root_table_list.tables[ACPI_TABLE_INDEX_DSDT].length =