u-boot/arch/sandbox/lib/acpi_table.c
Maximilian Brune f5f7962091 acpi: x86: Write FADT in common code
Write the FADT in common code since it's used on all architectures.
Since the FADT is mandatory all SoCs or mainboards must implement the
introduced function acpi_fill_fadt() and properly update the FADT.

Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
2024-10-27 17:12:44 -06:00

6 lines
No EOL
114 B
C

// SPDX-License-Identifier: GPL-2.0+
#include <acpi/acpi_table.h>
void acpi_fill_fadt(struct acpi_fadt *fadt)
{
}