diff options
author | Rob Herring <robh@kernel.org> | 2023-03-29 17:52:10 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2023-04-14 00:46:35 +0200 |
commit | 26c682676471777c8464645695d3590b9134a5e7 (patch) | |
tree | d835c222f202a4d5e07f3f4400863bc9d88ed4b3 /drivers/soc/mediatek | |
parent | thermal: cpuidle_cooling: Adjust includes to remove of_device.h (diff) | |
download | linux-26c682676471777c8464645695d3590b9134a5e7.tar.xz linux-26c682676471777c8464645695d3590b9134a5e7.zip |
soc: mediatek: mtk-svs: Add explicit include for cpu.h
Removing the include of cpu.h from of_device.h (included by
of_platform.h) causes an error:
drivers/soc/mediatek/mtk-svs.c:2134:41: error: implicit declaration of function 'get_cpu_device'; did you mean 'get_swap_device'? [-Werror=implicit-function-declaration]
of_platform.h is still needed for of_find_device_by_node().
Link: https://lore.kernel.org/r/20230329-dt-cpu-header-cleanups-v1-13-581e2605fe47@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/soc/mediatek')
-rw-r--r-- | drivers/soc/mediatek/mtk-svs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/mediatek/mtk-svs.c b/drivers/soc/mediatek/mtk-svs.c index f26eb2f637d5..1b7579a5bec6 100644 --- a/drivers/soc/mediatek/mtk-svs.c +++ b/drivers/soc/mediatek/mtk-svs.c @@ -7,6 +7,7 @@ #include <linux/bits.h> #include <linux/clk.h> #include <linux/completion.h> +#include <linux/cpu.h> #include <linux/cpuidle.h> #include <linux/debugfs.h> #include <linux/device.h> |