From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758385AbcIWGq1 (ORCPT ); Fri, 23 Sep 2016 02:46:27 -0400 Received: from mga02.intel.com ([134.134.136.20]:7663 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751976AbcIWGqZ (ORCPT ); Fri, 23 Sep 2016 02:46:25 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,380,1470726000"; d="scan'208";a="12486640" From: Lv Zheng To: Robert Moore , Lv Zheng , "David E. Box" Cc: Lv Zheng , , devel@acpica.org, "Rafael J. Wysocki" , "Rafael J. Wysocki" , Len Brown , Subject: [PATCH] acpiexec: Move an acpiexec specific purposed new line to acpiexec specific file Date: Fri, 23 Sep 2016 14:46:15 +0800 Message-Id: <1474613175-23008-1-git-send-email-lv.zheng@intel.com> X-Mailer: git-send-email 1.7.10 In-Reply-To: <20160919101234.r2zfor37m7eq6k6p@pd.tnic> References: <20160909161253.30952-1-bp@alien8.de> <20160919101234.r2zfor37m7eq6k6p@pd.tnic> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > No need, Robert did it already: > > 1d435008fd9e ("Update an info message during table load phase.") Not exactly what I meant. I meant the following on top of the above mentioned commit. As the newline is an acpiexec specific logic, it should be kept in acpiexec, shouldn't be left polluting a common file. Lv Zheng. Signed-off-by: Lv Zheng To: Borislav Petkov Cc: Rafael J. Wysocki Cc: Rafael J. Wysocki Cc: Len Brown Cc: -- Index: acpica/source/components/tables/tbxfload.c =================================================================== --- acpica.orig/source/components/tables/tbxfload.c +++ acpica/source/components/tables/tbxfload.c @@ -348,11 +348,6 @@ AcpiTbLoadNamespace ( Status = AE_CTRL_TERMINATE; } -#ifdef ACPI_APPLICATION - ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, "\n")); -#endif - - UnlockAndExit: (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES); return_ACPI_STATUS (Status); Index: acpica/source/tools/acpiexec/aetables.c =================================================================== --- acpica.orig/source/tools/acpiexec/aetables.c +++ acpica/source/tools/acpiexec/aetables.c @@ -625,6 +625,7 @@ AeLoadTables ( Status = AcpiLoadTables (); ACPI_CHECK_OK (AcpiLoadTables, Status); + ACPI_DEBUG_PRINT_RAW ((ACPI_DB_INIT, "\n")); /* * Test run-time control method installation. Do it twice to test code