summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLv Zheng <lv.zheng@intel.com>2016-09-23 08:44:11 +0800
committerLv Zheng <lv.zheng@intel.com>2016-09-23 08:44:11 +0800
commit55b49920dbeb333da2467e660ae51d06c49d7f2b (patch)
treebf352d03f855259a0350ff5a511e00ec69709fe6
parent1a69fcaa9924c57802d39289a036cc30a117ed7d (diff)
downloadacpica-55b49920dbeb333da2467e660ae51d06c49d7f2b.tar.gz
Tables: Fix a regression in AcpiTbFindTable()
This was just an already fixed issue, and accidently released due to my local process issues. Lv Zheng. Signed-off-by: Lv Zheng <lv.zheng@intel.com>
-rw-r--r--source/components/tables/tbfind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/components/tables/tbfind.c b/source/components/tables/tbfind.c
index d688c4279..4fc98fc48 100644
--- a/source/components/tables/tbfind.c
+++ b/source/components/tables/tbfind.c
@@ -228,5 +228,5 @@ AcpiTbFindTable (
UnlockAndExit:
(void) AcpiUtReleaseMutex (ACPI_MTX_TABLES);
- return_ACPI_STATUS (AE_NOT_FOUND);
+ return_ACPI_STATUS (Status);
}