https://github.com/torvalds/linux
Raw File
Tip revision: 4c2e07c6a29e0129e975727b9f57eede813eea85 authored by Linus Torvalds on 27 June 2016, 00:52:03 UTC
Linux 4.7-rc5
Tip revision: 4c2e07c
suspend.h
#ifndef __ASM_ARM_SUSPEND_H
#define __ASM_ARM_SUSPEND_H

struct sleep_save_sp {
	u32 *save_ptr_stash;
	u32 save_ptr_stash_phys;
};

extern void cpu_resume(void);
extern void cpu_resume_arm(void);
extern int cpu_suspend(unsigned long, int (*)(unsigned long));

#endif
back to top