reboot.h 201 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ACPI_REBOOT_H
  3. #define __ACPI_REBOOT_H
  4. #ifdef CONFIG_ACPI
  5. extern void acpi_reboot(void);
  6. #else
  7. static inline void acpi_reboot(void) { }
  8. #endif
  9. #endif