[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210703091218.650202-1-gushengxian507419@gmail.com>
Date: Sat, 3 Jul 2021 02:12:18 -0700
From: gushengxian <gushengxian507419@...il.com>
To: robert.moore@...el.com, erik.kaneda@...el.com,
rafael.j.wysocki@...el.com, lenb@...nel.org
Cc: linux-acpi@...r.kernel.org, devel@...ica.org,
linux-kernel@...r.kernel.org, gushengxian <gushengxian@...ong.com>
Subject: [PATCH] ACPICA: fix if condition
From: gushengxian <gushengxian@...ong.com>
Fix if condition.
Signed-off-by: gushengxian <gushengxian@...ong.com>
---
drivers/acpi/acpica/dswexec.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/acpi/acpica/dswexec.c b/drivers/acpi/acpica/dswexec.c
index 41ba7773fd10..c4cd61469e1f 100644
--- a/drivers/acpi/acpica/dswexec.c
+++ b/drivers/acpi/acpica/dswexec.c
@@ -561,8 +561,7 @@ 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"));
}
--
2.25.1
Powered by blists - more mailing lists