Commit 189c7213 authored by Colin Ian King's avatar Colin Ian King Committed by Rafael J. Wysocki

ACPICA: Debugger: remove redundant assignment on obj_desc

ACPICA commit f530f1acb3128136ad97c715fdaebbbeff283ee2

Pointer obj_desc is being initialized with a value that is never
read and it is being updated later with a new value. The initialization
is redundant and can be removed.

Addresses-Coverity: ("Unused value")

Link: https://github.com/acpica/acpica/commit/f530f1acSigned-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarErik Schmauss <erik.schmauss@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent d1abaeb3
...@@ -394,7 +394,6 @@ void acpi_db_decode_locals(struct acpi_walk_state *walk_state) ...@@ -394,7 +394,6 @@ void acpi_db_decode_locals(struct acpi_walk_state *walk_state)
u8 display_locals = FALSE; u8 display_locals = FALSE;
node = walk_state->method_node; node = walk_state->method_node;
obj_desc = walk_state->method_desc;
/* There are no locals for the module-level code case */ /* There are no locals for the module-level code case */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment