blob: 3df9f32bd8349e54189e41ffc35227ac9b30d573 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
static inline int arch_prepare_suspend(void)
{
return 0;
}
static inline void save_processor_state(void)
{
}
static inline void restore_processor_state(void)
{
}
|