From: Marek Szyprowski Date: Mon, 13 Jun 2011 06:47:17 +0000 (+0900) Subject: ARM: EXYNOS4: Fix compilation break X-Git-Tag: v3.1-rc1~149^2^2~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5a4f52421d4e546c0f21d469a509388aa6670de;p=profile%2Fivi%2Fkernel-x86-ivi.git ARM: EXYNOS4: Fix compilation break The patch "ARM: SAMSUNG: Add support for pre-sleep/post-restore gpio control" broke compilation on Exynos4 platform with power management enabled. This patch adds missing stubs that fixes this issue. Signed-off-by: Marek Szyprowski Signed-off-by: Kukjin Kim --- diff --git a/arch/arm/mach-exynos4/include/mach/pm-core.h b/arch/arm/mach-exynos4/include/mach/pm-core.h index f26e46b..1df3b81 100644 --- a/arch/arm/mach-exynos4/include/mach/pm-core.h +++ b/arch/arm/mach-exynos4/include/mach/pm-core.h @@ -47,3 +47,13 @@ static inline void s3c_pm_arch_update_uart(void __iomem *regs, { /* nothing here yet */ } + +static inline void s3c_pm_restored_gpios(void) +{ + /* nothing here yet */ +} + +static inline void s3c_pm_saved_gpios(void) +{ + /* nothing here yet */ +}