diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2021-02-18 22:23:26 +0000 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2021-03-08 16:20:07 +0530 |
commit | fbb31cb805fd3574d3be7defc06a7fd2fd9af7d2 (patch) | |
tree | 46752bffd3e470ea5485ae61e20f6d4de9de364b /drivers/cpufreq/cpufreq-dt-platdev.c | |
parent | 536eb97abeba857126ad055de5923fa592acef25 (diff) | |
download | linux-fbb31cb805fd3574d3be7defc06a7fd2fd9af7d2.tar.gz linux-fbb31cb805fd3574d3be7defc06a7fd2fd9af7d2.tar.bz2 linux-fbb31cb805fd3574d3be7defc06a7fd2fd9af7d2.zip |
cpufreq: blacklist Arm Vexpress platforms in cpufreq-dt-platdev
Add "arm,vexpress" to cpufreq-dt-platdev blacklist since the actual
scaling is handled by the firmware cpufreq drivers(scpi, scmi and
vexpress-spc).
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq/cpufreq-dt-platdev.c')
-rw-r--r-- | drivers/cpufreq/cpufreq-dt-platdev.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 3ba2f716fe97..5e07065ec22f 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -103,6 +103,8 @@ static const struct of_device_id whitelist[] __initconst = { static const struct of_device_id blacklist[] __initconst = { { .compatible = "allwinner,sun50i-h6", }, + { .compatible = "arm,vexpress", }, + { .compatible = "calxeda,highbank", }, { .compatible = "calxeda,ecx-2000", }, |