xref: /qemu/include/hw/nvram/fw_cfg_acpi.h (revision 2abf0da2)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * ACPI support for fw_cfg
4  *
5  */
6 
7 #ifndef FW_CFG_ACPI_H
8 #define FW_CFG_ACPI_H
9 
10 #include "qemu/osdep.h"
11 #include "exec/hwaddr.h"
12 
13 void fw_cfg_acpi_dsdt_add(Aml *scope, const MemMapEntry *fw_cfg_memmap);
14 
15 #endif
16