From mboxrd@z Thu Jan 1 00:00:00 1970 From: kgene.kim@samsung.com (Kukjin Kim) Date: Mon, 19 Aug 2013 05:03:43 +0900 Subject: [PATCH] ARM: EXYNOS: always enable PM domains support for EXYNOS4x12 In-Reply-To: <1427702.Wy3A0eELLT@amdc1227> References: <2897494.fSQeGUd9YR@amdc1032> <1427702.Wy3A0eELLT@amdc1227> Message-ID: <5211289F.7000804@samsung.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 08/09/13 23:53, Tomasz Figa wrote: > Hi Bart, > > On Friday 09 of August 2013 13:56:05 Bartlomiej Zolnierkiewicz wrote: >> Currently PM domains support will be enabled for EXYNOS4x12 SoCs >> only if EXYNOS4210 SoC or EXYNOS5250 SoC support is also enabled. >> >> Fix it by explicitly selecting PM domains support (if PM support >> is enabled) by SOC_EXYNOS4212 and SOC_EXYNOS4412 config options. >> >> Signed-off-by: Bartlomiej Zolnierkiewicz >> Signed-off-by: Kyungmin Park >> --- >> arch/arm/mach-exynos/Kconfig | 2 ++ >> 1 file changed, 2 insertions(+) >> >> Index: b/arch/arm/mach-exynos/Kconfig >> =================================================================== >> --- a/arch/arm/mach-exynos/Kconfig 2013-08-08 14:36:02.000000000 +0200 >> +++ b/arch/arm/mach-exynos/Kconfig 2013-08-08 14:38:48.967486318 +0200 >> @@ -52,6 +52,7 @@ config SOC_EXYNOS4212 >> depends on ARCH_EXYNOS4 >> select ARCH_HAS_BANDGAP >> select PINCTRL_EXYNOS >> + select PM_GENERIC_DOMAINS if PM >> select S5P_PM if PM >> select S5P_SLEEP if PM >> select SAMSUNG_DMADEV >> @@ -64,6 +65,7 @@ config SOC_EXYNOS4412 >> depends on ARCH_EXYNOS4 >> select ARCH_HAS_BANDGAP >> select PINCTRL_EXYNOS >> + select PM_GENERIC_DOMAINS if PM >> select SAMSUNG_DMADEV >> help >> Enable EXYNOS4412 SoC support > > Acked-by: Tomasz Figa > Applied, thanks. - Kukjin