reboot.h 162 B

123456789101112
  1. #ifndef __ACPI_REBOOT_H
  2. #define __ACPI_REBOOT_H
  3. #ifdef CONFIG_ACPI
  4. extern void acpi_reboot(void);
  5. #else
  6. static inline void acpi_reboot(void) { }
  7. #endif
  8. #endif