]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
cpufreq: clean up dead dependencies on X86 in Kconfig
authorJulian Braha <julianbraha@gmail.com>
Fri, 17 Apr 2026 23:06:52 +0000 (00:06 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Fri, 22 May 2026 16:42:19 +0000 (18:42 +0200)
The Kconfig in the parent directory already has an 'if X86' condition
wrapping the inclusion of this file, meaning that each of the individual
'depends on' statements in this file is a duplicate dependency (dead
code).

Leave the outer 'if X86...endif' and remove the individual 'depends on
X86' statement from each option.

This dead code was found by kconfirm, a static analysis tool for Kconfig.

Signed-off-by: Julian Braha <julianbraha@gmail.com>
Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
[ rjw: Changelog edits ]
Link: https://patch.msgid.link/20260417230652.305414-1-julianbraha@gmail.com
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/Kconfig.x86

index a9093cd5e5d1bf44543272b341448b80a8f25aa1..865099926577c5a8b0d509112ccbe2da9fb61197 100644 (file)
@@ -5,7 +5,6 @@
 
 config X86_INTEL_PSTATE
        bool "Intel P state control"
-       depends on X86
        select ACPI_PROCESSOR if ACPI
        select ACPI_CPPC_LIB if X86_64 && ACPI && SCHED_MC_PRIO
        select CPU_FREQ_GOV_PERFORMANCE
@@ -36,7 +35,7 @@ config X86_PCC_CPUFREQ
 
 config X86_AMD_PSTATE
        bool "AMD Processor P-State driver"
-       depends on X86 && ACPI
+       depends on ACPI
        select ACPI_PROCESSOR
        select ACPI_CPPC_LIB if X86_64
        select CPU_FREQ_GOV_SCHEDUTIL if SMP
@@ -72,7 +71,7 @@ config X86_AMD_PSTATE_DEFAULT_MODE
 
 config X86_AMD_PSTATE_UT
        tristate "selftest for AMD Processor P-State driver"
-       depends on X86 && ACPI_PROCESSOR
+       depends on ACPI_PROCESSOR
        depends on X86_AMD_PSTATE
        default n
        help