diff options
author | Richard Acayan <mailingradian@gmail.com> | 2024-02-10 00:19:15 +0100 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2024-02-15 08:28:39 +0100 |
commit | 032b149bcc54759b90c1851b0e13dff5e8c6f349 (patch) | |
tree | 4b938ec08f26bf002f5040da1025e353bb7171d0 /drivers/cpufreq | |
parent | cpufreq: mediatek-hw: Don't error out if supply is not found (diff) | |
download | linux-032b149bcc54759b90c1851b0e13dff5e8c6f349.tar.xz linux-032b149bcc54759b90c1851b0e13dff5e8c6f349.zip |
cpufreq: dt-platdev: block SDM670 in cpufreq-dt-platdev
The Snapdragon 670 uses the Qualcomm driver for CPU frequency scaling.
Block this driver from loading on it so the driver does not pollute
dmesg with an error.
Signed-off-by: Richard Acayan <mailingradian@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq-dt-platdev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index bd1e1357cef8..b993a498084b 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -156,6 +156,7 @@ static const struct of_device_id blocklist[] __initconst = { { .compatible = "qcom,sc7280", }, { .compatible = "qcom,sc8180x", }, { .compatible = "qcom,sc8280xp", }, + { .compatible = "qcom,sdm670", }, { .compatible = "qcom,sdm845", }, { .compatible = "qcom,sdx75", }, { .compatible = "qcom,sm6115", }, |