From: Lin Ming Date: Thu, 10 Apr 2008 15:06:42 +0000 (+0400) Subject: ACPICA: Fix for Load operator X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=200cce6a75061a3bf8d2e6b27c5cdcc7730893f1;p=linux-beck.git 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=463 Signed-off-by: Lin Ming Signed-off-by: Bob Moore Signed-off-by: Alexey Starikovskiy Signed-off-by: Len Brown --- diff --git a/drivers/acpi/tables/tbinstal.c b/drivers/acpi/tables/tbinstal.c index 6a6ee1f06c76..c4a9abb072c0 100644 --- a/drivers/acpi/tables/tbinstal.c +++ b/drivers/acpi/tables/tbinstal.c @@ -169,6 +169,7 @@ acpi_tb_add_table(struct acpi_table_desc *table_desc, acpi_tb_delete_table(table_desc); *table_index = i; + status = AE_ALREADY_EXISTS; goto release; }