mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ACPICA: Fix an if statement (add parens)
ACPICA commit 4dbe4b9a0c203b04918705f022e0db997aa55696 Link: https://github.com/acpica/acpica/commit/4dbe4b9a Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
e692fa1353
commit
5ecce804da
@ -561,11 +561,10 @@ acpi_status acpi_ds_exec_end_op(struct acpi_walk_state *walk_state)
|
||||
op->common.
|
||||
node->object,
|
||||
NULL);
|
||||
if ACPI_FAILURE
|
||||
(status) {
|
||||
if (ACPI_FAILURE(status)) {
|
||||
ACPI_EXCEPTION((AE_INFO, status,
|
||||
"While writing to buffer field"));
|
||||
}
|
||||
}
|
||||
}
|
||||
ACPI_FREE(namepath);
|
||||
status = AE_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user