diff options
author | Tomasz Figa <t.figa@samsung.com> | 2014-03-17 23:28:10 +0100 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-03-20 20:09:25 +0100 |
commit | b27899178c53226a5ff780a17657c84eb5e32338 (patch) | |
tree | 7f9072ef4258ff729173ed5b96c8673e0d37f3b4 /arch/arm/plat-samsung/Makefile | |
parent | ARM: SAMSUNG: Move Samsung PM debug code into separate file (diff) | |
download | linux-b27899178c53226a5ff780a17657c84eb5e32338.tar.xz linux-b27899178c53226a5ff780a17657c84eb5e32338.zip |
ARM: SAMSUNG: Move common save/restore helpers to separate file
To separate legacy PM code from generic helpers, this patch moves the
generic register save/restore helpers to a new file called pm-common.c
that is compiled always when CONFIG_PM_SLEEP is enabled, to allow
platforms that do not want to use the legacy PM code use the generic
helpers.
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung/Makefile')
-rw-r--r-- | arch/arm/plat-samsung/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/plat-samsung/Makefile b/arch/arm/plat-samsung/Makefile index ba30a16b3ca8..25c826ed3b65 100644 --- a/arch/arm/plat-samsung/Makefile +++ b/arch/arm/plat-samsung/Makefile @@ -47,6 +47,7 @@ obj-$(CONFIG_SAMSUNG_DMADEV) += dma-ops.o # PM support +obj-$(CONFIG_PM_SLEEP) += pm-common.o obj-$(CONFIG_SAMSUNG_PM) += pm.o obj-$(CONFIG_SAMSUNG_PM_GPIO) += pm-gpio.o obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o |