Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1316539 > unrolled thread

[PATCH] ARM: tango: use "depends on" instead of "if" after prompt

Started byMasahiro Yamada <yamada.masahiro@socionext.com>
First post2016-01-25 12:50 +0100
Last post2016-01-25 13:30 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] ARM: tango: use "depends on" instead of "if" after prompt Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-01-25 12:50 +0100
    Re: [PATCH] ARM: tango: use "depends on" instead of "if" after prompt Marc Gonzalez <marc_gonzalez@sigmadesigns.com> - 2016-01-25 13:30 +0100

#1316539 — [PATCH] ARM: tango: use "depends on" instead of "if" after prompt

FromMasahiro Yamada <yamada.masahiro@socionext.com>
Date2016-01-25 12:50 +0100
Subject[PATCH] ARM: tango: use "depends on" instead of "if" after prompt
Message-ID<qUNOG-3ga-23@gated-at.bofh.it>
This platform was recently added, so missed the global fixup by
commit e32465429490 ("ARM: use "depends on" for SoC configs instead
of "if" after prompt").  Fix it now.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm/mach-tango/Kconfig | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/mach-tango/Kconfig b/arch/arm/mach-tango/Kconfig
index d6a3714..ebe15b9 100644
--- a/arch/arm/mach-tango/Kconfig
+++ b/arch/arm/mach-tango/Kconfig
@@ -1,5 +1,6 @@
 config ARCH_TANGO
-	bool "Sigma Designs Tango4 (SMP87xx)" if ARCH_MULTI_V7
+	bool "Sigma Designs Tango4 (SMP87xx)"
+	depends on ARCH_MULTI_V7
 	# Cortex-A9 MPCore r3p0, PL310 r3p2
 	select ARCH_HAS_HOLES_MEMORYMODEL
 	select ARM_ERRATA_754322
-- 
1.9.1

[toc] | [next] | [standalone]


#1316615

FromMarc Gonzalez <marc_gonzalez@sigmadesigns.com>
Date2016-01-25 13:30 +0100
Message-ID<qUOrn-3Og-3@gated-at.bofh.it>
In reply to#1316539
On 25/01/2016 12:40, Masahiro Yamada wrote:

> This platform was recently added, so missed the global fixup by
> commit e32465429490 ("ARM: use "depends on" for SoC configs instead
> of "if" after prompt").  Fix it now.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
>  arch/arm/mach-tango/Kconfig | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Acked-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web