diff options
author | Rob Herring (Arm) <robh@kernel.org> | 2024-08-06 16:58:22 +0300 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2024-08-07 09:41:46 +0300 |
commit | 5c326d24c1b31a275afc05b4fbb7292eabd4d70a (patch) | |
tree | ac9941e38668f6001a8cd026c45a7fd7b10b985b | |
parent | 9b3cc56c24d80671763b4b6b7ea4aed213059d32 (diff) | |
download | linux-5c326d24c1b31a275afc05b4fbb7292eabd4d70a.tar.xz |
cpufreq: qcom: Add explicit io.h include for readl/writel_relaxed
The qcom-cpufreq-hw driver is relying on an implicit include of io.h
which doesn't get included on some architectures.
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
-rw-r--r-- | drivers/cpufreq/qcom-cpufreq-hw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/qcom-cpufreq-hw.c b/drivers/cpufreq/qcom-cpufreq-hw.c index 370fe6a0104b..900d6844c43d 100644 --- a/drivers/cpufreq/qcom-cpufreq-hw.c +++ b/drivers/cpufreq/qcom-cpufreq-hw.c @@ -9,6 +9,7 @@ #include <linux/init.h> #include <linux/interconnect.h> #include <linux/interrupt.h> +#include <linux/io.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/of.h> |