blob: 5d6d8aba56829a5713ad65442a1dba0df21fa41b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _ASM_SH_SUSPEND_H
#define _ASM_SH_SUSPEND_H
static inline int arch_prepare_suspend(void) { return 0; }
#include <asm/ptrace.h>
struct swsusp_arch_regs {
struct pt_regs user_regs;
unsigned long bank1_regs[8];
};
#endif /* _ASM_SH_SUSPEND_H */
|