2 * syscore_ops.h - System core operations.
6 * This file is released under the GPLv2.
9 #ifndef _LINUX_SYSCORE_OPS_H
10 #define _LINUX_SYSCORE_OPS_H
12 #include <linux/list.h>
15 struct list_head node;
18 void (*shutdown)(void);
21 extern void register_syscore_ops(struct syscore_ops *ops);
22 extern void unregister_syscore_ops(struct syscore_ops *ops);
23 #ifdef CONFIG_PM_SLEEP
24 extern int syscore_suspend(void);
25 extern void syscore_resume(void);
27 extern void syscore_shutdown(void);