Skip to content

Commit

Permalink
ACPICA: Tables: Fix a regression in acpi_tb_find_table()
Browse files Browse the repository at this point in the history
In the following commit, the return value of acpi_tb_find_table() is
incorrect:

commit ac0f06e
Author: Lv Zheng <lv.zheng@intel.com>
Date:   Wed Sep 7 14:07:24 2016 +0800

    ACPICA: Tables: Tune table mutex to be a leaf lock

    ACPICA commit f564d57c6501b97a2871f0b4c048e79910f71783

This causes LoadTable opcode to fail. Fix this mistake.

Signed-off-by: Lv Zheng <lv.zheng@intel.com>
[ rjw: Changelog ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Lv Zheng authored and Rafael J. Wysocki committed Sep 16, 2016
1 parent cb7d668 commit 86ec64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/acpica/tbfind.c
Original file line number Diff line number Diff line change
@@ -152,5 +152,5 @@ acpi_tb_find_table(char *signature,

unlock_and_exit:
(void)acpi_ut_release_mutex(ACPI_MTX_TABLES);
return_ACPI_STATUS(AE_NOT_FOUND);
return_ACPI_STATUS(status);
}

0 comments on commit 86ec64b

Please sign in to comment.