From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751825AbdFHCWZ (ORCPT ); Wed, 7 Jun 2017 22:22:25 -0400 Received: from mail-pg0-f65.google.com ([74.125.83.65]:33133 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751203AbdFHCWX (ORCPT ); Wed, 7 Jun 2017 22:22:23 -0400 From: Hoeun Ryu To: Russell King Cc: Hoeun Ryu , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/2] arm:omap2+: drop dependence on DEBUG_OMAP2PLUS_UART for DEBUG_UNCOMPRESS Date: Thu, 8 Jun 2017 11:16:54 +0900 Message-Id: <1496888232-30764-2-git-send-email-hoeun.ryu@gmail.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1496888232-30764-1-git-send-email-hoeun.ryu@gmail.com> References: <1496888232-30764-1-git-send-email-hoeun.ryu@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org With a patch 9a5151e1d1ba4df41bc4b8e8c0f17163247645ac, "arm:omap2+: put omap_uart_phys/virt/lsr in .text section when ZIMAGE is true", the dependence on DEBUG_OMAP2PLUS_UART for DEBUG_UNCOMPRESS can be dropped, because all code of omap2+'s DEBUG_LL_INCLUDE file is in .text section when it's included in the decompressor. Signed-off-by: Hoeun Ryu --- arch/arm/Kconfig.debug | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index ba2cb63..52eb0bf 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug @@ -1735,8 +1735,7 @@ config DEBUG_UART_8250_FLOW_CONTROL config DEBUG_UNCOMPRESS bool depends on ARCH_MULTIPLATFORM || PLAT_SAMSUNG || ARM_SINGLE_ARMV7M - default y if DEBUG_LL && !DEBUG_OMAP2PLUS_UART && \ - (!DEBUG_TEGRA_UART || !ZBOOT_ROM) && \ + default y if DEBUG_LL && (!DEBUG_TEGRA_UART || !ZBOOT_ROM) && \ !DEBUG_BRCMSTB_UART help This option influences the normal decompressor output for -- 2.7.4