* [PATCH] cpufreq / boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option
@ 2019-04-10 3:59 Yue Hu
2019-04-10 4:10 ` Viresh Kumar
0 siblings, 1 reply; 3+ messages in thread
From: Yue Hu @ 2019-04-10 3:59 UTC (permalink / raw)
To: rjw, rafael.j.wysocki, viresh.kumar; +Cc: linux-pm, huyue2
From: Yue Hu <huyue2@yulong.com>
Commit 2fb4719b2560 ("cpufreq / boost: Kconfig: Support for
software-managed BOOST") added the CONFIG_CPU_FREQ_BOOST_SW config.
However EXYNOS based cpufreq drivers have been removed because of
switching to cpufreq-dt driver which will set boost-attr if required.
So, let's remove this option and update cpufreq_generic_attr[].
Signed-off-by: Yue Hu <huyue2@yulong.com>
---
drivers/cpufreq/Kconfig | 4 ----
drivers/cpufreq/freq_table.c | 3 ---
2 files changed, 7 deletions(-)
diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
index b22e6bb..4d2b33a 100644
--- a/drivers/cpufreq/Kconfig
+++ b/drivers/cpufreq/Kconfig
@@ -26,10 +26,6 @@ config CPU_FREQ_GOV_COMMON
select IRQ_WORK
bool
-config CPU_FREQ_BOOST_SW
- bool
- depends on THERMAL
-
config CPU_FREQ_STAT
bool "CPU frequency transition statistics"
help
diff --git a/drivers/cpufreq/freq_table.c b/drivers/cpufreq/freq_table.c
index 3a8cc99..e7be0af 100644
--- a/drivers/cpufreq/freq_table.c
+++ b/drivers/cpufreq/freq_table.c
@@ -290,9 +290,6 @@ static ssize_t scaling_boost_frequencies_show(struct cpufreq_policy *policy,
struct freq_attr *cpufreq_generic_attr[] = {
&cpufreq_freq_attr_scaling_available_freqs,
-#ifdef CONFIG_CPU_FREQ_BOOST_SW
- &cpufreq_freq_attr_scaling_boost_freqs,
-#endif
NULL,
};
EXPORT_SYMBOL_GPL(cpufreq_generic_attr);
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] cpufreq / boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option
2019-04-10 3:59 [PATCH] cpufreq / boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option Yue Hu
@ 2019-04-10 4:10 ` Viresh Kumar
2019-05-01 10:20 ` Rafael J. Wysocki
0 siblings, 1 reply; 3+ messages in thread
From: Viresh Kumar @ 2019-04-10 4:10 UTC (permalink / raw)
To: Yue Hu; +Cc: rjw, rafael.j.wysocki, linux-pm, huyue2
On 10-04-19, 11:59, Yue Hu wrote:
> From: Yue Hu <huyue2@yulong.com>
>
> Commit 2fb4719b2560 ("cpufreq / boost: Kconfig: Support for
> software-managed BOOST") added the CONFIG_CPU_FREQ_BOOST_SW config.
> However EXYNOS based cpufreq drivers have been removed because of
> switching to cpufreq-dt driver which will set boost-attr if required.
>
> So, let's remove this option and update cpufreq_generic_attr[].
>
> Signed-off-by: Yue Hu <huyue2@yulong.com>
> ---
> drivers/cpufreq/Kconfig | 4 ----
> drivers/cpufreq/freq_table.c | 3 ---
> 2 files changed, 7 deletions(-)
>
> diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
> index b22e6bb..4d2b33a 100644
> --- a/drivers/cpufreq/Kconfig
> +++ b/drivers/cpufreq/Kconfig
> @@ -26,10 +26,6 @@ config CPU_FREQ_GOV_COMMON
> select IRQ_WORK
> bool
>
> -config CPU_FREQ_BOOST_SW
> - bool
> - depends on THERMAL
> -
> config CPU_FREQ_STAT
> bool "CPU frequency transition statistics"
> help
> diff --git a/drivers/cpufreq/freq_table.c b/drivers/cpufreq/freq_table.c
> index 3a8cc99..e7be0af 100644
> --- a/drivers/cpufreq/freq_table.c
> +++ b/drivers/cpufreq/freq_table.c
> @@ -290,9 +290,6 @@ static ssize_t scaling_boost_frequencies_show(struct cpufreq_policy *policy,
>
> struct freq_attr *cpufreq_generic_attr[] = {
> &cpufreq_freq_attr_scaling_available_freqs,
> -#ifdef CONFIG_CPU_FREQ_BOOST_SW
> - &cpufreq_freq_attr_scaling_boost_freqs,
> -#endif
> NULL,
> };
> EXPORT_SYMBOL_GPL(cpufreq_generic_attr);
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
viresh
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] cpufreq / boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option
2019-04-10 4:10 ` Viresh Kumar
@ 2019-05-01 10:20 ` Rafael J. Wysocki
0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2019-05-01 10:20 UTC (permalink / raw)
To: Viresh Kumar, Yue Hu; +Cc: rafael.j.wysocki, linux-pm, huyue2
On Wednesday, April 10, 2019 6:10:05 AM CEST Viresh Kumar wrote:
> On 10-04-19, 11:59, Yue Hu wrote:
> > From: Yue Hu <huyue2@yulong.com>
> >
> > Commit 2fb4719b2560 ("cpufreq / boost: Kconfig: Support for
> > software-managed BOOST") added the CONFIG_CPU_FREQ_BOOST_SW config.
> > However EXYNOS based cpufreq drivers have been removed because of
> > switching to cpufreq-dt driver which will set boost-attr if required.
> >
> > So, let's remove this option and update cpufreq_generic_attr[].
> >
> > Signed-off-by: Yue Hu <huyue2@yulong.com>
> > ---
> > drivers/cpufreq/Kconfig | 4 ----
> > drivers/cpufreq/freq_table.c | 3 ---
> > 2 files changed, 7 deletions(-)
> >
> > diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
> > index b22e6bb..4d2b33a 100644
> > --- a/drivers/cpufreq/Kconfig
> > +++ b/drivers/cpufreq/Kconfig
> > @@ -26,10 +26,6 @@ config CPU_FREQ_GOV_COMMON
> > select IRQ_WORK
> > bool
> >
> > -config CPU_FREQ_BOOST_SW
> > - bool
> > - depends on THERMAL
> > -
> > config CPU_FREQ_STAT
> > bool "CPU frequency transition statistics"
> > help
> > diff --git a/drivers/cpufreq/freq_table.c b/drivers/cpufreq/freq_table.c
> > index 3a8cc99..e7be0af 100644
> > --- a/drivers/cpufreq/freq_table.c
> > +++ b/drivers/cpufreq/freq_table.c
> > @@ -290,9 +290,6 @@ static ssize_t scaling_boost_frequencies_show(struct cpufreq_policy *policy,
> >
> > struct freq_attr *cpufreq_generic_attr[] = {
> > &cpufreq_freq_attr_scaling_available_freqs,
> > -#ifdef CONFIG_CPU_FREQ_BOOST_SW
> > - &cpufreq_freq_attr_scaling_boost_freqs,
> > -#endif
> > NULL,
> > };
> > EXPORT_SYMBOL_GPL(cpufreq_generic_attr);
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Patch applied, thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-05-01 10:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-10 3:59 [PATCH] cpufreq / boost: Remove CONFIG_CPU_FREQ_BOOST_SW Kconfig option Yue Hu
2019-04-10 4:10 ` Viresh Kumar
2019-05-01 10:20 ` 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