diff mbox series

cpufreq: Move endif to the end of Kconfig file

Message ID 84ac7a8fa72a8fe20487bb0a350a758bce060965.1736488384.git.viresh.kumar@linaro.org
State Accepted
Commit 7e265fc04690d449a40b413b0348b15c748cea6f
Headers show
Series cpufreq: Move endif to the end of Kconfig file | expand

Commit Message

Viresh Kumar Jan. 10, 2025, 5:53 a.m. UTC
It is possible to enable few cpufreq drivers, without the framework
being enabled. This happened due to a bug while moving the entries
earlier. Fix it.

Fixes: 7ee1378736f0 ("cpufreq: Move CPPC configs to common Kconfig and add RISC-V")
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
 drivers/cpufreq/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Rafael J. Wysocki Jan. 14, 2025, 7:57 p.m. UTC | #1
On Fri, Jan 10, 2025 at 3:43 PM Sudeep Holla <sudeep.holla@arm.com> wrote:
>
> On Fri, Jan 10, 2025 at 11:23:10AM +0530, Viresh Kumar wrote:
> > It is possible to enable few cpufreq drivers, without the framework
> > being enabled. This happened due to a bug while moving the entries
> > earlier. Fix it.
> >
>
> Surprising to see how randconfigs has not managed to catch this so far.
>
> Anyways,
>
> Reviewed-by: Sudeep Holla <sudeep.holla@arm.com>

Applied as a fix for 6.13, thanks!
diff mbox series

Patch

diff --git a/drivers/cpufreq/Kconfig b/drivers/cpufreq/Kconfig
index ea9afdc119fb..d64b07ec48e5 100644
--- a/drivers/cpufreq/Kconfig
+++ b/drivers/cpufreq/Kconfig
@@ -325,8 +325,6 @@  config QORIQ_CPUFREQ
 	  This adds the CPUFreq driver support for Freescale QorIQ SoCs
 	  which are capable of changing the CPU's frequency dynamically.
 
-endif
-
 config ACPI_CPPC_CPUFREQ
 	tristate "CPUFreq driver based on the ACPI CPPC spec"
 	depends on ACPI_PROCESSOR
@@ -355,4 +353,6 @@  config ACPI_CPPC_CPUFREQ_FIE
 
 	  If in doubt, say N.
 
+endif
+
 endmenu