diff options
author | Bob Moore <robert.moore@intel.com> | 2007-02-02 19:48:24 +0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-02 21:14:31 -0500 |
commit | 035f994b3ccfcfc555f838e2f33a2e49721e8533 (patch) | |
tree | 35e25f6dd618c79b413dfafbc736e56975fab29a | |
parent | 6c9deb7201d96733dcd1b4cc44e99232308db359 (diff) | |
download | blackbird-obmc-linux-035f994b3ccfcfc555f838e2f33a2e49721e8533.tar.gz blackbird-obmc-linux-035f994b3ccfcfc555f838e2f33a2e49721e8533.zip |
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 <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/tables/tbxface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/tables/tbxface.c b/drivers/acpi/tables/tbxface.c index 84a80891d21b..807978d5381a 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 = |