License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / arm / include / asm / suspend.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
2c74a0ce
RK
2#ifndef __ASM_ARM_SUSPEND_H
3#define __ASM_ARM_SUSPEND_H
4
ac8b4d3e
JH
5#include <linux/types.h>
6
7604537b
LP
7struct sleep_save_sp {
8 u32 *save_ptr_stash;
9 u32 save_ptr_stash_phys;
10};
11
2c74a0ce 12extern void cpu_resume(void);
32e55a77 13extern void cpu_resume_arm(void);
e8ce0eb5 14extern int cpu_suspend(unsigned long, int (*)(unsigned long));
2c74a0ce
RK
15
16#endif