Commit 200cce6a authored by Lin Ming's avatar Lin Ming Committed by Len Brown

ACPICA: Fix for Load operator

Fixed a problem with the Load operator where an exception was not
returned in the case where the table is already loaded.

http://www.acpica.org/bugzilla/show_bug.cgi?id=463Signed-off-by: default avatarLin Ming <ming.m.lin@intel.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarAlexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 9accd464
...@@ -169,6 +169,7 @@ acpi_tb_add_table(struct acpi_table_desc *table_desc, ...@@ -169,6 +169,7 @@ acpi_tb_add_table(struct acpi_table_desc *table_desc,
acpi_tb_delete_table(table_desc); acpi_tb_delete_table(table_desc);
*table_index = i; *table_index = i;
status = AE_ALREADY_EXISTS;
goto release; goto release;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment