cpuidle-exynos.h 361 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2014 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. */
  6. #ifndef __CPUIDLE_EXYNOS_H
  7. #define __CPUIDLE_EXYNOS_H
  8. struct cpuidle_exynos_data {
  9. int (*cpu0_enter_aftr)(void);
  10. int (*cpu1_powerdown)(void);
  11. void (*pre_enter_aftr)(void);
  12. void (*post_enter_aftr)(void);
  13. };
  14. #endif