From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf0-f66.google.com ([209.85.215.66]:36859 "EHLO mail-lf0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752586AbeBEBYt (ORCPT ); Sun, 4 Feb 2018 20:24:49 -0500 From: Ulf Magnusson Subject: [PATCH 12/20] ARM: debug: Remove ARCH_MSM dep. from UNCOMPRESS_INCLUDE Date: Mon, 5 Feb 2018 02:21:24 +0100 Message-Id: <20180205012146.23981-13-ulfalizer@gmail.com> In-Reply-To: <20180205012146.23981-1-ulfalizer@gmail.com> References: <20180205012146.23981-1-ulfalizer@gmail.com> Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org Cc: linux-kbuild@vger.kernel.org, tfiga@chromium.org, paul.burton@mips.com, m.szyprowski@samsung.com, egtvedt@samfundet.no, linus.walleij@linaro.org, vgupta@synopsys.com, mgorman@techsingularity.net, hch@lst.de, mina86@mina86.com, robh@kernel.org, sboyd@codeaurora.org, paulus@ozlabs.org, will.deacon@arm.com, tony@atomide.com, npiggin@gmail.com, yamada.masahiro@socionext.com, Ulf Magnusson , Russell King , linux-arm-kernel@lists.infradead.org The ARCH_MSM symbol was removed in commit c0c89fafa289 ("ARM: Remove mach-msm and associated ARM architecture code"), but a default in UNCOMPRESS_INCLUDE still depends on it. Remove the ARCH_MSM dependency from the default in UNCOMPRESS_INCLUDE. Discovered with the https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py script. Signed-off-by: Ulf Magnusson --- arch/arm/Kconfig.debug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index 78a647080ebc..20c601a045d2 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug @@ -1825,7 +1825,7 @@ config DEBUG_UNCOMPRESS config UNCOMPRESS_INCLUDE string - default "debug/uncompress.h" if ARCH_MULTIPLATFORM || ARCH_MSM || \ + default "debug/uncompress.h" if ARCH_MULTIPLATFORM || \ PLAT_SAMSUNG || ARM_SINGLE_ARMV7M default "mach/uncompress.h" -- 2.14.1