brintos

brintos / linux-shallow public Read only

0
0
Text · 401 B · af2fce5 Raw
19 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef ACPI_BUTTON_H3#define ACPI_BUTTON_H4 5#define ACPI_BUTTON_HID_POWER	"PNP0C0C"6#define ACPI_BUTTON_HID_LID	"PNP0C0D"7#define ACPI_BUTTON_HID_SLEEP	"PNP0C0E"8 9#if IS_ENABLED(CONFIG_ACPI_BUTTON)10extern int acpi_lid_open(void);11#else12static inline int acpi_lid_open(void)13{14	return 1;15}16#endif /* IS_ENABLED(CONFIG_ACPI_BUTTON) */17 18#endif /* ACPI_BUTTON_H */19