mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
14 lines
256 B
C
14 lines
256 B
C
![]() |
#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 */
|