cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

button.h (401B)


      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)
     10extern int acpi_lid_open(void);
     11#else
     12static inline int acpi_lid_open(void)
     13{
     14	return 1;
     15}
     16#endif /* IS_ENABLED(CONFIG_ACPI_BUTTON) */
     17
     18#endif /* ACPI_BUTTON_H */