Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/acpi/button.h
26285 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef ACPI_BUTTON_H
3
#define ACPI_BUTTON_H
4
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)
10
extern int acpi_lid_open(void);
11
#else
12
static 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
20