From mboxrd@z Thu Jan 1 00:00:00 1970 From: SF Markus Elfring Subject: [PATCH 22/30] ACPI-processor: Delete two unnecessary initialisations in acpi_processor_get_tsd() Date: Sat, 10 Sep 2016 12:04:43 +0200 Message-ID: <16582716-99b7-dea2-0d34-7e390514e61e@users.sourceforge.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mout.web.de ([212.227.17.11]:59525 "EHLO mout.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755182AbcIJKEx (ORCPT ); Sat, 10 Sep 2016 06:04:53 -0400 In-Reply-To: Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: linux-acpi@vger.kernel.org, Len Brown , "Rafael J. Wysocki" Cc: LKML , kernel-janitors@vger.kernel.org, Julia Lawall , Paolo Bonzini From: Markus Elfring Date: Tue, 6 Sep 2016 20:52:33 +0200 The local variables "tsd" and "status" will be set to an appropriate value a bit later. Thus omit the explicit initialisation at the beginning. Signed-off-by: Markus Elfring --- drivers/acpi/processor_throttling.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 2e3ef48..ea1e959 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c @@ -582,11 +582,11 @@ static int acpi_processor_get_throttling_states(struct acpi_processor *pr) static int acpi_processor_get_tsd(struct acpi_processor *pr) { int result = 0; - acpi_status status = AE_OK; + acpi_status status; struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" }; struct acpi_buffer state = { 0, NULL }; - union acpi_object *tsd = NULL; + union acpi_object *tsd; struct acpi_tsd_package *pdomain; struct acpi_processor_throttling *pthrottling; -- 2.10.0