diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2011-06-13 02:47:17 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-07-20 10:13:55 -0400 |
commit | b5a4f52421d4e546c0f21d469a509388aa6670de (patch) | |
tree | d2732c3f14cb045fae8c26572e1059c1fd9344da /arch/arm/mach-exynos4 | |
parent | 1bac282af43d81d826ef25945a35536fa9bd041d (diff) |
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 <m.szyprowski@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos4')
-rw-r--r-- | arch/arm/mach-exynos4/include/mach/pm-core.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos4/include/mach/pm-core.h b/arch/arm/mach-exynos4/include/mach/pm-core.h index f26e46bc06ca..1df3b81f96e8 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, | |||
47 | { | 47 | { |
48 | /* nothing here yet */ | 48 | /* nothing here yet */ |
49 | } | 49 | } |
50 | |||
51 | static inline void s3c_pm_restored_gpios(void) | ||
52 | { | ||
53 | /* nothing here yet */ | ||
54 | } | ||
55 | |||
56 | static inline void s3c_pm_saved_gpios(void) | ||
57 | { | ||
58 | /* nothing here yet */ | ||
59 | } | ||