Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754569AbdLHQ3b (ORCPT ); Fri, 8 Dec 2017 11:29:31 -0500 Received: from mail-lf0-f66.google.com ([209.85.215.66]:46788 "EHLO mail-lf0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753636AbdLHQ3Y (ORCPT ); Fri, 8 Dec 2017 11:29:24 -0500 X-Google-Smtp-Source: AGs4zMYL9ee/kGtj7iKEYAUF456fbpTVb1MVGzucUYrnsYfjYSQJIKCOElBAUICVdkpQATirWa/MCQ== From: Vasyl Gomonovych To: robert.moore@intel.com, lv.zheng@intel.com, rafael.j.wysocki@intel.com, lenb@kernel.org, gomonovych@gmail.com Cc: linux-acpi@vger.kernel.org, devel@acpica.org, linux-kernel@vger.kernel.org Subject: [PATCH] ACPICA: Fix indentation Date: Fri, 8 Dec 2017 17:29:12 +0100 Message-Id: <1512750553-15467-1-git-send-email-gomonovych@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 823 Lines: 25 This patch avoids that smatch reports the following: drivers/acpi/acpica/exdump.c:623 acpi_ex_dump_operand() warn: inconsistent indenting Signed-off-by: Vasyl Gomonovych --- drivers/acpi/acpica/exdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/acpi/acpica/exdump.c b/drivers/acpi/acpica/exdump.c index 83398dc..f43d3d7 100644 --- a/drivers/acpi/acpica/exdump.c +++ b/drivers/acpi/acpica/exdump.c @@ -619,8 +619,8 @@ void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth) ACPI_FUNCTION_NAME(ex_dump_operand) - /* Check if debug output enabled */ - if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) { + /* Check if debug output enabled */ + if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_EXEC, _COMPONENT)) { return; } -- 1.9.1