mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 12:25:27 +00:00

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>
11 lines
209 B
C
11 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__ */
|