* [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build
@ 2014-04-02 11:03 Sachin Kamat
2014-04-02 11:05 ` Viresh Kumar
0 siblings, 1 reply; 4+ messages in thread
From: Sachin Kamat @ 2014-04-02 11:03 UTC (permalink / raw)
To: cpufreq; +Cc: linux-pm, rjw, viresh.kumar, sachin.kamat, Arnd Bergmann
The current exynos cpufreq drivers are not multiplatform compliant
and give build errors as they refer to header files from machine
directory. Work to migrate them to generic cpufreq framework is under
progress. Till such time disable the build on multiplatform so that
other multiplatform ready features get tested.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Arnd Bergmann <arnd@arndb.de>
---
drivers/cpufreq/Kconfig.arm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
index 1e2b9db563ec..0e9cce82844b 100644
--- a/drivers/cpufreq/Kconfig.arm
+++ b/drivers/cpufreq/Kconfig.arm
@@ -30,7 +30,7 @@ config ARM_EXYNOS_CPUFREQ
config ARM_EXYNOS4210_CPUFREQ
bool "SAMSUNG EXYNOS4210"
- depends on CPU_EXYNOS4210
+ depends on CPU_EXYNOS4210 && !ARCH_MULTIPLATFORM
default y
select ARM_EXYNOS_CPUFREQ
help
@@ -41,7 +41,7 @@ config ARM_EXYNOS4210_CPUFREQ
config ARM_EXYNOS4X12_CPUFREQ
bool "SAMSUNG EXYNOS4x12"
- depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412)
+ depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412) && !ARCH_MULTIPLATFORM
default y
select ARM_EXYNOS_CPUFREQ
help
@@ -52,7 +52,7 @@ config ARM_EXYNOS4X12_CPUFREQ
config ARM_EXYNOS5250_CPUFREQ
bool "SAMSUNG EXYNOS5250"
- depends on SOC_EXYNOS5250
+ depends on SOC_EXYNOS5250 && !ARCH_MULTIPLATFORM
default y
select ARM_EXYNOS_CPUFREQ
help
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build
2014-04-02 11:03 [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build Sachin Kamat
@ 2014-04-02 11:05 ` Viresh Kumar
2014-04-03 11:43 ` Sachin Kamat
0 siblings, 1 reply; 4+ messages in thread
From: Viresh Kumar @ 2014-04-02 11:05 UTC (permalink / raw)
To: Sachin Kamat
Cc: cpufreq@vger.kernel.org, linux-pm@vger.kernel.org,
Rafael J. Wysocki, Arnd Bergmann
On 2 April 2014 16:33, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> The current exynos cpufreq drivers are not multiplatform compliant
> and give build errors as they refer to header files from machine
> directory. Work to migrate them to generic cpufreq framework is under
> progress. Till such time disable the build on multiplatform so that
> other multiplatform ready features get tested.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> Cc: Arnd Bergmann <arnd@arndb.de>
> ---
> drivers/cpufreq/Kconfig.arm | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm
> index 1e2b9db563ec..0e9cce82844b 100644
> --- a/drivers/cpufreq/Kconfig.arm
> +++ b/drivers/cpufreq/Kconfig.arm
> @@ -30,7 +30,7 @@ config ARM_EXYNOS_CPUFREQ
>
> config ARM_EXYNOS4210_CPUFREQ
> bool "SAMSUNG EXYNOS4210"
> - depends on CPU_EXYNOS4210
> + depends on CPU_EXYNOS4210 && !ARCH_MULTIPLATFORM
> default y
> select ARM_EXYNOS_CPUFREQ
> help
> @@ -41,7 +41,7 @@ config ARM_EXYNOS4210_CPUFREQ
>
> config ARM_EXYNOS4X12_CPUFREQ
> bool "SAMSUNG EXYNOS4x12"
> - depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412)
> + depends on (SOC_EXYNOS4212 || SOC_EXYNOS4412) && !ARCH_MULTIPLATFORM
> default y
> select ARM_EXYNOS_CPUFREQ
> help
> @@ -52,7 +52,7 @@ config ARM_EXYNOS4X12_CPUFREQ
>
> config ARM_EXYNOS5250_CPUFREQ
> bool "SAMSUNG EXYNOS5250"
> - depends on SOC_EXYNOS5250
> + depends on SOC_EXYNOS5250 && !ARCH_MULTIPLATFORM
> default y
> select ARM_EXYNOS_CPUFREQ
> help
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build
2014-04-02 11:05 ` Viresh Kumar
@ 2014-04-03 11:43 ` Sachin Kamat
2014-04-08 12:13 ` Rafael J. Wysocki
0 siblings, 1 reply; 4+ messages in thread
From: Sachin Kamat @ 2014-04-03 11:43 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: cpufreq@vger.kernel.org, linux-pm@vger.kernel.org, Arnd Bergmann,
Viresh Kumar
On 2 April 2014 16:35, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 2 April 2014 16:33, Sachin Kamat <sachin.kamat@linaro.org> wrote:
>> The current exynos cpufreq drivers are not multiplatform compliant
>> and give build errors as they refer to header files from machine
>> directory. Work to migrate them to generic cpufreq framework is under
>> progress. Till such time disable the build on multiplatform so that
>> other multiplatform ready features get tested.
>>
>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>> Cc: Arnd Bergmann <arnd@arndb.de>
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Rafael,
Please queue this patch for your upcoming pull request to Linus.
--
With warm regards,
Sachin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build
2014-04-03 11:43 ` Sachin Kamat
@ 2014-04-08 12:13 ` Rafael J. Wysocki
0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2014-04-08 12:13 UTC (permalink / raw)
To: Sachin Kamat
Cc: cpufreq@vger.kernel.org, linux-pm@vger.kernel.org, Arnd Bergmann,
Viresh Kumar
On Thursday, April 03, 2014 05:13:58 PM Sachin Kamat wrote:
> On 2 April 2014 16:35, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> > On 2 April 2014 16:33, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> >> The current exynos cpufreq drivers are not multiplatform compliant
> >> and give build errors as they refer to header files from machine
> >> directory. Work to migrate them to generic cpufreq framework is under
> >> progress. Till such time disable the build on multiplatform so that
> >> other multiplatform ready features get tested.
> >>
> >> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> >> Cc: Arnd Bergmann <arnd@arndb.de>
>
> >
> > Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
>
> Rafael,
> Please queue this patch for your upcoming pull request to Linus.
I will, thanks!
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-08 12:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-02 11:03 [PATCH 1/1] cpufreq: exynos: Disable on multiplatform build Sachin Kamat
2014-04-02 11:05 ` Viresh Kumar
2014-04-03 11:43 ` Sachin Kamat
2014-04-08 12:13 ` 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;
as well as URLs for NNTP newsgroup(s).