From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kukjin Kim Subject: RE: [PATCH] cpufreq: exynos: allow build for !THERMAL or !CPU_THERMAL cases Date: Tue, 24 Mar 2015 21:53:49 +0900 Message-ID: <02c201d06631$92a06440$b7e12cc0$@kernel.org> References: <2275232.48muFcOOQv@amdc1032> <75115513.B5dLcdQ7nU@amdc1032> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailout1.samsung.com ([203.254.224.24]:34841 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751980AbbCXMxv (ORCPT ); Tue, 24 Mar 2015 08:53:51 -0400 In-reply-to: <75115513.B5dLcdQ7nU@amdc1032> Content-language: ko Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: 'Bartlomiej Zolnierkiewicz' , 'Viresh Kumar' Cc: 'linux-samsung-soc' , 'Kukjin Kim' , 'Arnd Bergmann' , 'Eduardo Valentin' , 'Lukasz Majewski' , linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org, 'Linux Kernel Mailing List' Bartlomiej Zolnierkiewicz wrote: > > Hi, > Hi, > On Monday, February 23, 2015 10:07:50 AM Viresh Kumar wrote: > > On 20 February 2015 at 21:50, Bartlomiej Zolnierkiewicz > > wrote: > > > Allow driver build for !THERMAL or !CPU_THERMAL cases. > > > > > > The new dependency rule is the same as the one that CPUFREQ_DT > > > option has (for cpufreq-dt driver which has the same issue with > > > using of_cpufreq_cooling_register()). > > > > > > Cc: Kukjin Kim Looks OK to me, Acked-by: Kukjin Kim Thanks, Kukjin > > > Cc: Arnd Bergmann > > > Cc: Eduardo Valentin > > > Cc: Lukasz Majewski > > > Fixes: 8b2b4a4e5366 ("cpufreq: exynos: allow modular build") > > > Signed-off-by: Bartlomiej Zolnierkiewicz > > > --- > > > drivers/cpufreq/Kconfig.arm | 3 ++- > > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > > > diff --git a/drivers/cpufreq/Kconfig.arm b/drivers/cpufreq/Kconfig.arm > > > index 1b06fc4..f4df4af3 100644 > > > --- a/drivers/cpufreq/Kconfig.arm > > > +++ b/drivers/cpufreq/Kconfig.arm > > > @@ -28,7 +28,8 @@ config ARM_VEXPRESS_SPC_CPUFREQ > > > config ARM_EXYNOS_CPUFREQ > > > tristate "SAMSUNG EXYNOS CPUfreq Driver" > > > depends on CPU_EXYNOS4210 || SOC_EXYNOS4212 || SOC_EXYNOS4412 || SOC_EXYNOS5250 > > > - depends on THERMAL > > > + # if CPU_THERMAL is on and THERMAL=m, ARM_EXYNOS_CPUFREQ cannot be =y: > > > + depends on !CPU_THERMAL || THERMAL > > > help > > > This adds the CPUFreq driver for Samsung EXYNOS platforms. > > > Supported SoC versions are: > > > > Acked-by: Viresh Kumar > > Thank you for the ACK. > > Would you pick this patch up or should I resend it to Rafael? > > Best regards, > -- > Bartlomiej Zolnierkiewicz > Samsung R&D Institute Poland > Samsung Electronics