diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2012-01-27 14:47:45 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-27 14:47:45 +0900 |
commit | 556ef3e474dd87d627655dafdf1e7eaf4747e388 (patch) | |
tree | de1bacb35ae93b9b90b8fda9e38d6aee765a94ae /arch/arm/mach-exynos | |
parent | 5d3a21990c58b68a31dcbf4c378231781c53bfc1 (diff) | |
download | blackbird-obmc-linux-556ef3e474dd87d627655dafdf1e7eaf4747e388.tar.gz blackbird-obmc-linux-556ef3e474dd87d627655dafdf1e7eaf4747e388.zip |
ARM: EXYNOS: fix non-SMP builds for EXYNOS4
This patch fixes the following build issue, which happens only if
SMP has been disabled:
arch/arm/mach-exynos/built-in.o: In function `exynos4_pm_resume':
arch/arm/mach-exynos/pm.c:387: undefined reference to `scu_enable'
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r-- | arch/arm/mach-exynos/pm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/pm.c b/arch/arm/mach-exynos/pm.c index a4f61a43c7ba..2521b23553eb 100644 --- a/arch/arm/mach-exynos/pm.c +++ b/arch/arm/mach-exynos/pm.c @@ -384,7 +384,9 @@ static void exynos4_pm_resume(void) exynos4_restore_pll(); +#ifdef CONFIG_SMP scu_enable(S5P_VA_SCU); +#endif #ifdef CONFIG_CACHE_L2X0 s3c_pm_do_restore_core(exynos4_l2cc_save, ARRAY_SIZE(exynos4_l2cc_save)); |