common.h 473 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. *
  6. * Common Header for S5PV210 machines
  7. */
  8. #ifndef __ARCH_ARM_MACH_S5PV210_COMMON_H
  9. #define __ARCH_ARM_MACH_S5PV210_COMMON_H
  10. #ifdef CONFIG_PM_SLEEP
  11. u32 exynos_get_eint_wake_mask(void);
  12. void s5pv210_cpu_resume(void);
  13. void s5pv210_pm_init(void);
  14. #else
  15. static inline void s5pv210_pm_init(void) {}
  16. #endif
  17. #endif /* __ARCH_ARM_MACH_S5PV210_COMMON_H */