xref: /openbmc/qemu/include/hw/nvram/fw_cfg_acpi.h (revision fdd6ee0b7653e5b195e0b351fb53bb1e6d4c84bd)
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