mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 18:04:48 +00:00

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>
6 lines
No EOL
114 B
C
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)
|
|
{
|
|
} |