mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
093bd0354e
The pci_mmc.c driver can generate ACPI info and therefore includes asm/acpi_table.h. This file does not exist for the RISC-V architecture and thus code compilation fails when using this driver on RISC-V Create an empty include file. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com> Reviewed-by: Rick Chen <rick@andestech.com>
11 lines
246 B
C
11 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#ifndef __ASM_ACPI_TABLE_H__
|
|
#define __ASM_ACPI_TABLE_H__
|
|
|
|
/*
|
|
* This file is needed by some drivers.
|
|
* We will fill it when adding ACPI support for RISC-V.
|
|
*/
|
|
|
|
#endif /* __ASM_ACPI_TABLE_H__ */
|