mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
55716d2643
Based on 1 normalized pattern(s): this file is released under the gplv2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 68 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Armijn Hemel <armijn@tjaldur.nl> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531190114.292346262@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
28 lines
633 B
C
28 lines
633 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* syscore_ops.h - System core operations.
|
|
*
|
|
* Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
|
|
*/
|
|
|
|
#ifndef _LINUX_SYSCORE_OPS_H
|
|
#define _LINUX_SYSCORE_OPS_H
|
|
|
|
#include <linux/list.h>
|
|
|
|
struct syscore_ops {
|
|
struct list_head node;
|
|
int (*suspend)(void);
|
|
void (*resume)(void);
|
|
void (*shutdown)(void);
|
|
};
|
|
|
|
extern void register_syscore_ops(struct syscore_ops *ops);
|
|
extern void unregister_syscore_ops(struct syscore_ops *ops);
|
|
#ifdef CONFIG_PM_SLEEP
|
|
extern int syscore_suspend(void);
|
|
extern void syscore_resume(void);
|
|
#endif
|
|
extern void syscore_shutdown(void);
|
|
|
|
#endif
|