linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: omap: Remove stray ARCH_HAS_OPP references
@ 2014-09-06 10:14 Mark Brown
  2014-09-06 14:10 ` Nishanth Menon
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2014-09-06 10:14 UTC (permalink / raw)
  To: linux-arm-kernel

OPP is now a normal kernel library selected by its users rather than a
feature that architectures need to enable so ARCH_HAS_OPP serves no
function any more - remove the selects.

Signed-off-by: Mark Brown <broonie@kernel.org>
---
 arch/arm/mach-omap2/Kconfig | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index e7189dcc9309..11ccf0b4e5c2 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -25,7 +25,6 @@ config ARCH_OMAP4
 	bool "TI OMAP4"
 	depends on ARCH_MULTI_V7
 	select ARCH_OMAP2PLUS
-	select ARCH_HAS_OPP
 	select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
 	select ARM_CPU_SUSPEND if PM
 	select ARM_ERRATA_720789
@@ -44,7 +43,6 @@ config SOC_OMAP5
 	bool "TI OMAP5"
 	depends on ARCH_MULTI_V7
 	select ARCH_OMAP2PLUS
-	select ARCH_HAS_OPP
 	select ARM_CPU_SUSPEND if PM
 	select ARM_GIC
 	select HAVE_ARM_SCU if SMP
@@ -56,14 +54,12 @@ config SOC_AM33XX
 	bool "TI AM33XX"
 	depends on ARCH_MULTI_V7
 	select ARCH_OMAP2PLUS
-	select ARCH_HAS_OPP
 	select ARM_CPU_SUSPEND if PM
 
 config SOC_AM43XX
 	bool "TI AM43x"
 	depends on ARCH_MULTI_V7
 	select ARCH_OMAP2PLUS
-	select ARCH_HAS_OPP
 	select ARM_GIC
 	select MACH_OMAP_GENERIC
 	select MIGHT_HAVE_CACHE_L2X0
@@ -72,7 +68,6 @@ config SOC_DRA7XX
 	bool "TI DRA7XX"
 	depends on ARCH_MULTI_V7
 	select ARCH_OMAP2PLUS
-	select ARCH_HAS_OPP
 	select ARM_CPU_SUSPEND if PM
 	select ARM_GIC
 	select HAVE_ARM_ARCH_TIMER
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] ARM: omap: Remove stray ARCH_HAS_OPP references
  2014-09-06 10:14 [PATCH] ARM: omap: Remove stray ARCH_HAS_OPP references Mark Brown
@ 2014-09-06 14:10 ` Nishanth Menon
  2014-09-09  0:20   ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: Nishanth Menon @ 2014-09-06 14:10 UTC (permalink / raw)
  To: linux-arm-kernel

On 09/06/2014 05:14 AM, Mark Brown wrote:
> OPP is now a normal kernel library selected by its users rather than a
> feature that architectures need to enable so ARCH_HAS_OPP serves no
> function any more - remove the selects.
>
> Signed-off-by: Mark Brown <broonie@kernel.org>
> ---
>   arch/arm/mach-omap2/Kconfig | 5 -----
>   1 file changed, 5 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
> index e7189dcc9309..11ccf0b4e5c2 100644
> --- a/arch/arm/mach-omap2/Kconfig
> +++ b/arch/arm/mach-omap2/Kconfig
> @@ -25,7 +25,6 @@ config ARCH_OMAP4
>   	bool "TI OMAP4"
>   	depends on ARCH_MULTI_V7
>   	select ARCH_OMAP2PLUS
> -	select ARCH_HAS_OPP
>   	select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
>   	select ARM_CPU_SUSPEND if PM
>   	select ARM_ERRATA_720789
> @@ -44,7 +43,6 @@ config SOC_OMAP5
>   	bool "TI OMAP5"
>   	depends on ARCH_MULTI_V7
>   	select ARCH_OMAP2PLUS
> -	select ARCH_HAS_OPP
>   	select ARM_CPU_SUSPEND if PM
>   	select ARM_GIC
>   	select HAVE_ARM_SCU if SMP
> @@ -56,14 +54,12 @@ config SOC_AM33XX
>   	bool "TI AM33XX"
>   	depends on ARCH_MULTI_V7
>   	select ARCH_OMAP2PLUS
> -	select ARCH_HAS_OPP
>   	select ARM_CPU_SUSPEND if PM
>
>   config SOC_AM43XX
>   	bool "TI AM43x"
>   	depends on ARCH_MULTI_V7
>   	select ARCH_OMAP2PLUS
> -	select ARCH_HAS_OPP
>   	select ARM_GIC
>   	select MACH_OMAP_GENERIC
>   	select MIGHT_HAVE_CACHE_L2X0
> @@ -72,7 +68,6 @@ config SOC_DRA7XX
>   	bool "TI DRA7XX"
>   	depends on ARCH_MULTI_V7
>   	select ARCH_OMAP2PLUS
> -	select ARCH_HAS_OPP
>   	select ARM_CPU_SUSPEND if PM
>   	select ARM_GIC
>   	select HAVE_ARM_ARCH_TIMER
>


Acked-by: Nishanth Menon <nm@ti.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] ARM: omap: Remove stray ARCH_HAS_OPP references
  2014-09-06 14:10 ` Nishanth Menon
@ 2014-09-09  0:20   ` Tony Lindgren
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2014-09-09  0:20 UTC (permalink / raw)
  To: linux-arm-kernel

* Nishanth Menon <nm@ti.com> [140906 07:11]:
> On 09/06/2014 05:14 AM, Mark Brown wrote:
> >OPP is now a normal kernel library selected by its users rather than a
> >feature that architectures need to enable so ARCH_HAS_OPP serves no
> >function any more - remove the selects.
> >
> >Signed-off-by: Mark Brown <broonie@kernel.org>
... 
 
> Acked-by: Nishanth Menon <nm@ti.com>

Applying into omap-for-v3.18/soc thanks.

Tony 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-09-09  0:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-06 10:14 [PATCH] ARM: omap: Remove stray ARCH_HAS_OPP references Mark Brown
2014-09-06 14:10 ` Nishanth Menon
2014-09-09  0:20   ` Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).