mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
383acb0dac
Since Exynos/S5Pv210 pin-controller driver is taking care about setting the external wakeup interrupts mask, the legacy code can be removed. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Cc: Tomasz Figa <tomasz.figa@gmail.com> Cc: Sylwester Nawrocki <snawrocki@kernel.org> Acked-by: Tomasz Figa <tomasz.figa@gmail.com>
20 lines
436 B
C
20 lines
436 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* Common Header for S5PV210 machines
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_S5PV210_COMMON_H
|
|
#define __ARCH_ARM_MACH_S5PV210_COMMON_H
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
void s5pv210_cpu_resume(void);
|
|
void s5pv210_pm_init(void);
|
|
#else
|
|
static inline void s5pv210_pm_init(void) {}
|
|
#endif
|
|
|
|
#endif /* __ARCH_ARM_MACH_S5PV210_COMMON_H */
|