Skip to content

Commit 1e8d007

Browse files
tititiou36rafaeljw
authored andcommitted
ACPICA: Slightly simplify an error message in acpi_ds_result_push()
ACPICA commit 3a9dbc5cb1573b87a16b50918977ab9e53e24408 'object' is known to be NULL at this point. There is little value to log it twice in the error message. Link: acpica/acpica@3a9dbc5c Signed-off-by: Christophe JAILLET <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 6399878 commit 1e8d007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/acpi/acpica/dswstate.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ acpi_ds_result_push(union acpi_operand_object *object,
146146

147147
if (!object) {
148148
ACPI_ERROR((AE_INFO,
149-
"Null Object! Obj=%p State=%p Num=%u",
150-
object, walk_state, walk_state->result_count));
149+
"Null Object! State=%p Num=%u",
150+
walk_state, walk_state->result_count));
151151
return (AE_BAD_PARAMETER);
152152
}
153153

0 commit comments

Comments
 (0)