1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-12 22:22:09 +02:00
Files
u-boot-megous/arch/sandbox/include/asm/acpi_table.h
Simon Glass 0679cca507 sandbox: Allow building with GENERATE_ACPI_TABLE
At present this option is missing a header file, a function prototype and
the qfw driver needs a header included.

Fix these problems so we can enable this option on sandbox. This will
increase the build coverage.

Signed-off-by: Simon Glass <sjg@chromium.org>
2022-01-25 11:44:36 -07:00

12 lines
209 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2019 Google LLC
*/
#ifndef __ASM_ACPI_TABLE_H__
#define __ASM_ACPI_TABLE_H__
ulong write_acpi_tables(ulong start);
#endif /* __ASM_ACPI_TABLE_H__ */