Files
linux-apfs/include/acpi/reboot.h
T

12 lines
162 B
C
Raw Normal View History

#ifndef __ACPI_REBOOT_H
#define __ACPI_REBOOT_H
#ifdef CONFIG_ACPI
extern void acpi_reboot(void);
#else
static inline void acpi_reboot(void) { }
#endif
2008-01-30 13:31:17 +01:00
#endif