blob: 28ed7e97c334477ee923c2ce5789db5c677ccd4d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <acpi/acpi.h>
#include <intelblocks/acpi.h>
void mainboard_fill_fadt(acpi_fadt_t *fadt)
{
/* Control method power button (EC) */
fadt->flags |= ACPI_FADT_POWER_BUTTON;
}
|