repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
proc/sysctl: fix return error for proc_doulongvec_minmax()
[linux/fpc-iii.git]
/
include
/
acpi
/
reboot.h
blob
14122fc55bbe617b36bfc99e3e6fc6e0cf0d85d0
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __ACPI_REBOOT_H
3
#define __ACPI_REBOOT_H
4
5
#ifdef CONFIG_ACPI
6
extern
void
acpi_reboot
(
void
);
7
#else
8
static
inline
void
acpi_reboot
(
void
) { }
9
#endif
10
11
#endif
12