diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-08-06 21:20:52 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-08-20 18:52:05 +0300 |
commit | 81b11a6a09964cfea4c525d22548790a1d92d38f (patch) | |
tree | 2f1caee50d56b318114f3e6929ca1923cabc8f2d /arch/arm/mach-s3c64xx | |
parent | 01e93a173935d11061721c3eb90a54f80719b54f (diff) | |
download | linux-81b11a6a09964cfea4c525d22548790a1d92d38f.tar.xz |
ARM: s3c: remove cpufreq header dependencies
The cpufreq drivers are split between the machine directory
and the drivers/cpufreq directory. In order to share header
files after we convert s3c to multiplatform, those headers
have to live in a different global location.
Move them to linux/soc/samsung/ in lack of a better place.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Link: https://lore.kernel.org/r/20200806182059.2431-35-krzk@kernel.org
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Diffstat (limited to 'arch/arm/mach-s3c64xx')
-rw-r--r-- | arch/arm/mach-s3c64xx/s3c6400.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-s3c64xx/s3c6410.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c64xx/s3c6400.c b/arch/arm/mach-s3c64xx/s3c6400.c index 81233495d548..d18af724c807 100644 --- a/arch/arm/mach-s3c64xx/s3c6400.c +++ b/arch/arm/mach-s3c64xx/s3c6400.c @@ -28,7 +28,6 @@ #include <asm/irq.h> -#include <plat/cpu-freq.h> #include <mach/regs-clock.h> #include <plat/cpu.h> diff --git a/arch/arm/mach-s3c64xx/s3c6410.c b/arch/arm/mach-s3c64xx/s3c6410.c index 9465a6e0f068..b1d725e55cd2 100644 --- a/arch/arm/mach-s3c64xx/s3c6410.c +++ b/arch/arm/mach-s3c64xx/s3c6410.c @@ -29,7 +29,7 @@ #include <asm/irq.h> -#include <plat/cpu-freq.h> +#include <linux/soc/samsung/s3c-pm.h> #include <mach/regs-clock.h> #include <plat/cpu.h> |