diff options
author | Simon Glass <sjg@chromium.org> | 2021-12-01 09:02:40 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-01-25 11:44:36 -0700 |
commit | 0679cca5072d6959b51f45c00cb5bf59d75a9329 (patch) | |
tree | b09ab087d94ca8f2e83a0bc95ad363f433d99df7 /arch/sandbox/include/asm/acpi_table.h | |
parent | 27ba6289fe3db6f2be1fa787575348154a32341f (diff) |
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>
Diffstat (limited to 'arch/sandbox/include/asm/acpi_table.h')
-rw-r--r-- | arch/sandbox/include/asm/acpi_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/acpi_table.h b/arch/sandbox/include/asm/acpi_table.h index 921c7f4201..ae17f6c519 100644 --- a/arch/sandbox/include/asm/acpi_table.h +++ b/arch/sandbox/include/asm/acpi_table.h @@ -6,4 +6,6 @@ #ifndef __ASM_ACPI_TABLE_H__ #define __ASM_ACPI_TABLE_H__ +ulong write_acpi_tables(ulong start); + #endif /* __ASM_ACPI_TABLE_H__ */ |