suspend.h 267 B

1234567891011121314
  1. #ifndef __ASM_ARM_SUSPEND_H
  2. #define __ASM_ARM_SUSPEND_H
  3. struct sleep_save_sp {
  4. u32 *save_ptr_stash;
  5. u32 save_ptr_stash_phys;
  6. };
  7. extern void cpu_resume(void);
  8. extern void cpu_resume_arm(void);
  9. extern int cpu_suspend(unsigned long, int (*)(unsigned long));
  10. #endif