Gitiles
Code Review
Sign In
192.168.1.100
/
R306
/
2dbc1526a2b84342aa5d5d2a0b7c25c960d13710
/
.
/
ap
/
os
/
linux
/
linux-3.4.x
/
include
/
acpi
/
reboot.h
blob: 0419184ce8867664164de63b2a232da985af718f [
file
] [
log
] [
blame
]
yuezonghe
824eb0c
2024-06-27 02:32:26 -0700
[
diff
] [
blame
]
1
#ifndef
__ACPI_REBOOT_H
2
#define
__ACPI_REBOOT_H
3
4
#ifdef
CONFIG_ACPI
5
extern
void
acpi_reboot
(
void
);
6
#else
7
static
inline
void
acpi_reboot
(
void
)
{
}
8
#endif
9
10
#endif
11