diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-05-10 09:52:20 -0400 |
---|---|---|
committer | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2016-05-30 03:12:49 -0400 |
commit | e465007a7a7ca745f018fdcacb0a5a911a5c50d9 (patch) | |
tree | 008bb6b3b47e5d06fa2c7b94b5fe2220d0a29028 | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) |
ARM: EXYNOS: Move pm_domains driver to drivers/soc/samsung
Exynos PM domains driver does not have mach-specific dependencies so it
can be safely moved out of arm/mach-exynos to drivers/soc. This in
future will allow re-using it on ARM64 boards.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
-rw-r--r-- | arch/arm/mach-exynos/Makefile | 1 | ||||
-rw-r--r-- | drivers/soc/samsung/Makefile | 1 | ||||
-rw-r--r-- | drivers/soc/samsung/pm_domains.c (renamed from arch/arm/mach-exynos/pm_domains.c) | 0 |
3 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/Makefile b/arch/arm/mach-exynos/Makefile index 34d29df3e006..838249d4ff5c 100644 --- a/arch/arm/mach-exynos/Makefile +++ b/arch/arm/mach-exynos/Makefile | |||
@@ -13,7 +13,6 @@ obj-$(CONFIG_ARCH_EXYNOS) += exynos.o exynos-smc.o firmware.o | |||
13 | 13 | ||
14 | obj-$(CONFIG_EXYNOS_CPU_SUSPEND) += pm.o sleep.o | 14 | obj-$(CONFIG_EXYNOS_CPU_SUSPEND) += pm.o sleep.o |
15 | obj-$(CONFIG_PM_SLEEP) += suspend.o | 15 | obj-$(CONFIG_PM_SLEEP) += suspend.o |
16 | obj-$(CONFIG_PM_GENERIC_DOMAINS) += pm_domains.o | ||
17 | 16 | ||
18 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | 17 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o |
19 | 18 | ||
diff --git a/drivers/soc/samsung/Makefile b/drivers/soc/samsung/Makefile index f64ac4d80564..8aead5835def 100644 --- a/drivers/soc/samsung/Makefile +++ b/drivers/soc/samsung/Makefile | |||
@@ -1,2 +1,3 @@ | |||
1 | obj-$(CONFIG_EXYNOS_PMU) += exynos-pmu.o exynos3250-pmu.o exynos4-pmu.o \ | 1 | obj-$(CONFIG_EXYNOS_PMU) += exynos-pmu.o exynos3250-pmu.o exynos4-pmu.o \ |
2 | exynos5250-pmu.o exynos5420-pmu.o | 2 | exynos5250-pmu.o exynos5420-pmu.o |
3 | obj-$(CONFIG_PM_GENERIC_DOMAINS) += pm_domains.o | ||
diff --git a/arch/arm/mach-exynos/pm_domains.c b/drivers/soc/samsung/pm_domains.c index 875a2bab64f6..875a2bab64f6 100644 --- a/arch/arm/mach-exynos/pm_domains.c +++ b/drivers/soc/samsung/pm_domains.c | |||