xref: /linux/include/acpi/button.h (revision c1d3fb8abe667cd9aa59f3a176ca4d0636d9b44b)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ACPI_BUTTON_H
3 #define ACPI_BUTTON_H
4 
5 #if IS_ENABLED(CONFIG_ACPI_BUTTON)
6 extern int acpi_lid_open(void);
7 #else
8 static inline int acpi_lid_open(void)
9 {
10 	return 1;
11 }
12 #endif /* IS_ENABLED(CONFIG_ACPI_BUTTON) */
13 
14 #endif /* ACPI_BUTTON_H */
15