From: Colin Ian King Date: Fri, 16 Aug 2019 21:43:20 +0000 (-0700) Subject: ACPICA: Debugger: remove redundant assignment on obj_desc X-Git-Tag: microblaze-v5.5-rc1~170^2~2^2~8 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=189c7213f4c5decddfe5969e28a1ce0bcae28cb1;p=linux-2.6-microblaze.git 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/f530f1ac Signed-off-by: Colin Ian King Signed-off-by: Bob Moore Signed-off-by: Erik Schmauss Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/acpi/acpica/dbobject.c b/drivers/acpi/acpica/dbobject.c index d220168dca01..f9fc84bc3e84 100644 --- a/drivers/acpi/acpica/dbobject.c +++ b/drivers/acpi/acpica/dbobject.c @@ -394,7 +394,6 @@ void acpi_db_decode_locals(struct acpi_walk_state *walk_state) u8 display_locals = FALSE; node = walk_state->method_node; - obj_desc = walk_state->method_desc; /* There are no locals for the module-level code case */