• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <acpi/acpi.h>
4 #include <intelblocks/acpi.h>
5 
mainboard_fill_fadt(acpi_fadt_t * fadt)6 void mainboard_fill_fadt(acpi_fadt_t *fadt)
7 {
8 	/* Control method power button (EC) */
9 	fadt->flags |= ACPI_FADT_POWER_BUTTON;
10 }
11