xref: /linux/include/acpi/button.h (revision 7bd460fc1dfa7d82d99493fc5d7b5f9c7b679af4)
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