Skip to content

Commit d4f610a

Browse files
krzkvireshk
authored andcommitted
cpufreq: Do not enable by default during compile testing
Enabling the compile test should not cause automatic enabling of all drivers. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
1 parent fc5414a commit d4f610a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

drivers/cpufreq/Kconfig.arm

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ config ARM_VEXPRESS_SPC_CPUFREQ
7676
config ARM_BRCMSTB_AVS_CPUFREQ
7777
tristate "Broadcom STB AVS CPUfreq driver"
7878
depends on (ARCH_BRCMSTB && !ARM_SCMI_CPUFREQ) || COMPILE_TEST
79-
default y
79+
default ARCH_BRCMSTB
8080
help
8181
Some Broadcom STB SoCs use a co-processor running proprietary firmware
8282
("AVS") to handle voltage and frequency scaling. This driver provides
@@ -181,7 +181,7 @@ config ARM_RASPBERRYPI_CPUFREQ
181181
config ARM_S3C64XX_CPUFREQ
182182
bool "Samsung S3C64XX"
183183
depends on CPU_S3C6410 || COMPILE_TEST
184-
default y
184+
default CPU_S3C6410
185185
help
186186
This adds the CPUFreq driver for Samsung S3C6410 SoC.
187187

@@ -190,7 +190,7 @@ config ARM_S3C64XX_CPUFREQ
190190
config ARM_S5PV210_CPUFREQ
191191
bool "Samsung S5PV210 and S5PC110"
192192
depends on CPU_S5PV210 || COMPILE_TEST
193-
default y
193+
default CPU_S5PV210
194194
help
195195
This adds the CPUFreq driver for Samsung S5PV210 and
196196
S5PC110 SoCs.
@@ -214,7 +214,7 @@ config ARM_SCMI_CPUFREQ
214214
config ARM_SPEAR_CPUFREQ
215215
bool "SPEAr CPUFreq support"
216216
depends on PLAT_SPEAR || COMPILE_TEST
217-
default y
217+
default PLAT_SPEAR
218218
help
219219
This adds the CPUFreq driver support for SPEAr SOCs.
220220

@@ -233,15 +233,15 @@ config ARM_TEGRA20_CPUFREQ
233233
tristate "Tegra20/30 CPUFreq support"
234234
depends on ARCH_TEGRA || COMPILE_TEST
235235
depends on CPUFREQ_DT
236-
default y
236+
default ARCH_TEGRA
237237
help
238238
This adds the CPUFreq driver support for Tegra20/30 SOCs.
239239

240240
config ARM_TEGRA124_CPUFREQ
241241
bool "Tegra124 CPUFreq support"
242242
depends on ARCH_TEGRA || COMPILE_TEST
243243
depends on CPUFREQ_DT
244-
default y
244+
default ARCH_TEGRA
245245
help
246246
This adds the CPUFreq driver support for Tegra124 SOCs.
247247

@@ -256,14 +256,14 @@ config ARM_TEGRA194_CPUFREQ
256256
tristate "Tegra194 CPUFreq support"
257257
depends on ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC || (64BIT && COMPILE_TEST)
258258
depends on TEGRA_BPMP
259-
default y
259+
default ARCH_TEGRA
260260
help
261261
This adds CPU frequency driver support for Tegra194 SOCs.
262262

263263
config ARM_TI_CPUFREQ
264264
bool "Texas Instruments CPUFreq support"
265265
depends on ARCH_OMAP2PLUS || ARCH_K3 || COMPILE_TEST
266-
default y
266+
default ARCH_OMAP2PLUS || ARCH_K3
267267
help
268268
This driver enables valid OPPs on the running platform based on
269269
values contained within the SoC in use. Enable this in order to

0 commit comments

Comments
 (0)