public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD
@ 2014-07-10 10:15 Quentin Armitage
  2014-07-10 10:20 ` Viresh Kumar
  2014-07-10 13:58 ` Andrew Lunn
  0 siblings, 2 replies; 4+ messages in thread
From: Quentin Armitage @ 2014-07-10 10:15 UTC (permalink / raw)
  To: Rafael J. Wysocki, Viresh Kumar; +Cc: linux-pm, linux-kernel, Andrew Lunn

Commit ff1f0018cf66080d8e6f59791e552615648a033a ("drivers: Enable
building of Kirkwood drivers for mach-mvebu") added Kirkwood into
mach-mvebu, adding MACH_KIRKWOOD to ARCH_KIRKWOOD in the KConfig files.

The change for ARM_KIRKWOOD_CPUFREQ replaced ARCH_KIRKWOOD with
MACH_KIRKWOOD, whereas all the other changes were ARCH_KIRKWOOD ||
MACH_KIRKWOOD.

As a consequence of this change, the cpufreq driver is no longer enabled
for ARCH_KIRKWOOD. This patch reinstates ARM_KIRKWOOD_CPUFREQ for
ARCH_KIRKWOOD.

Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
---
diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
index ebac671..24778f0 100644
--- a/drivers/cpufreq/Kconfig.arm
+++ b/drivers/cpufreq/Kconfig.arm
@@ -118,7 +118,7 @@ config ARM_INTEGRATOR
          If in doubt, say Y.

 config ARM_KIRKWOOD_CPUFREQ
-       def_bool MACH_KIRKWOOD
+       def_bool ARCH_KIRKWOOD || MACH_KIRKWOOD
        help
          This adds the CPUFreq driver for Marvell Kirkwood
          SoCs.
 






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

* Re: [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD
  2014-07-10 10:15 [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD Quentin Armitage
@ 2014-07-10 10:20 ` Viresh Kumar
  2014-07-10 13:58 ` Andrew Lunn
  1 sibling, 0 replies; 4+ messages in thread
From: Viresh Kumar @ 2014-07-10 10:20 UTC (permalink / raw)
  To: Quentin Armitage
  Cc: Rafael J. Wysocki, linux-pm@vger.kernel.org,
	Linux Kernel Mailing List, Andrew Lunn

On 10 July 2014 15:45, Quentin Armitage <quentin@armitage.org.uk> wrote:
> Commit ff1f0018cf66080d8e6f59791e552615648a033a ("drivers: Enable
> building of Kirkwood drivers for mach-mvebu") added Kirkwood into
> mach-mvebu, adding MACH_KIRKWOOD to ARCH_KIRKWOOD in the KConfig files.
>
> The change for ARM_KIRKWOOD_CPUFREQ replaced ARCH_KIRKWOOD with
> MACH_KIRKWOOD, whereas all the other changes were ARCH_KIRKWOOD ||
> MACH_KIRKWOOD.
>
> As a consequence of this change, the cpufreq driver is no longer enabled
> for ARCH_KIRKWOOD. This patch reinstates ARM_KIRKWOOD_CPUFREQ for
> ARCH_KIRKWOOD.
>
> Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
> ---
> diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
> index ebac671..24778f0 100644
> --- a/drivers/cpufreq/Kconfig.arm
> +++ b/drivers/cpufreq/Kconfig.arm
> @@ -118,7 +118,7 @@ config ARM_INTEGRATOR
>           If in doubt, say Y.
>
>  config ARM_KIRKWOOD_CPUFREQ
> -       def_bool MACH_KIRKWOOD
> +       def_bool ARCH_KIRKWOOD || MACH_KIRKWOOD
>         help
>           This adds the CPUFreq driver for Marvell Kirkwood
>           SoCs.

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

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

* Re: [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD
  2014-07-10 10:15 [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD Quentin Armitage
  2014-07-10 10:20 ` Viresh Kumar
@ 2014-07-10 13:58 ` Andrew Lunn
  2014-07-18  1:08   ` Rafael J. Wysocki
  1 sibling, 1 reply; 4+ messages in thread
From: Andrew Lunn @ 2014-07-10 13:58 UTC (permalink / raw)
  To: Quentin Armitage
  Cc: Rafael J. Wysocki, Viresh Kumar, linux-pm, linux-kernel,
	Andrew Lunn

On Thu, Jul 10, 2014 at 11:15:55AM +0100, Quentin Armitage wrote:
> Commit ff1f0018cf66080d8e6f59791e552615648a033a ("drivers: Enable
> building of Kirkwood drivers for mach-mvebu") added Kirkwood into
> mach-mvebu, adding MACH_KIRKWOOD to ARCH_KIRKWOOD in the KConfig files.
> 
> The change for ARM_KIRKWOOD_CPUFREQ replaced ARCH_KIRKWOOD with
> MACH_KIRKWOOD, whereas all the other changes were ARCH_KIRKWOOD ||
> MACH_KIRKWOOD.
> 
> As a consequence of this change, the cpufreq driver is no longer enabled
> for ARCH_KIRKWOOD. This patch reinstates ARM_KIRKWOOD_CPUFREQ for
> ARCH_KIRKWOOD.
> 
> Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
> ---
> diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
> index ebac671..24778f0 100644
> --- a/drivers/cpufreq/Kconfig.arm
> +++ b/drivers/cpufreq/Kconfig.arm
> @@ -118,7 +118,7 @@ config ARM_INTEGRATOR
>           If in doubt, say Y.
> 
>  config ARM_KIRKWOOD_CPUFREQ
> -       def_bool MACH_KIRKWOOD
> +       def_bool ARCH_KIRKWOOD || MACH_KIRKWOOD
>         help
>           This adds the CPUFreq driver for Marvell Kirkwood
>           SoCs.

Acked-by: Andrew Lunn <andrew@lunn.ch>

	  Andrew  

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

* Re: [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD
  2014-07-10 13:58 ` Andrew Lunn
@ 2014-07-18  1:08   ` Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2014-07-18  1:08 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: Quentin Armitage, Viresh Kumar, linux-pm, linux-kernel

On Thursday, July 10, 2014 03:58:59 PM Andrew Lunn wrote:
> On Thu, Jul 10, 2014 at 11:15:55AM +0100, Quentin Armitage wrote:
> > Commit ff1f0018cf66080d8e6f59791e552615648a033a ("drivers: Enable
> > building of Kirkwood drivers for mach-mvebu") added Kirkwood into
> > mach-mvebu, adding MACH_KIRKWOOD to ARCH_KIRKWOOD in the KConfig files.
> > 
> > The change for ARM_KIRKWOOD_CPUFREQ replaced ARCH_KIRKWOOD with
> > MACH_KIRKWOOD, whereas all the other changes were ARCH_KIRKWOOD ||
> > MACH_KIRKWOOD.
> > 
> > As a consequence of this change, the cpufreq driver is no longer enabled
> > for ARCH_KIRKWOOD. This patch reinstates ARM_KIRKWOOD_CPUFREQ for
> > ARCH_KIRKWOOD.
> > 
> > Signed-off-by: Quentin Armitage <quentin@armitage.org.uk>
> > ---
> > diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
> > index ebac671..24778f0 100644
> > --- a/drivers/cpufreq/Kconfig.arm
> > +++ b/drivers/cpufreq/Kconfig.arm
> > @@ -118,7 +118,7 @@ config ARM_INTEGRATOR
> >           If in doubt, say Y.
> > 
> >  config ARM_KIRKWOOD_CPUFREQ
> > -       def_bool MACH_KIRKWOOD
> > +       def_bool ARCH_KIRKWOOD || MACH_KIRKWOOD
> >         help
> >           This adds the CPUFreq driver for Marvell Kirkwood
> >           SoCs.
> 
> Acked-by: Andrew Lunn <andrew@lunn.ch>

Applied, thanks!


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

end of thread, other threads:[~2014-07-18  0:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-10 10:15 [PATCH] cpufreq: kirkwood: Reinstate cpufreq driver for ARCH_KIRKWOOD Quentin Armitage
2014-07-10 10:20 ` Viresh Kumar
2014-07-10 13:58 ` Andrew Lunn
2014-07-18  1:08   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox