1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * ACPI support for virtio 4 */ 5 6 #ifndef VIRTIO_ACPI_H 7 #define VIRTIO_ACPI_H 8 9 #include "qemu/osdep.h" 10 #include "exec/hwaddr.h" 11 12 void virtio_acpi_dsdt_add(Aml *scope, const hwaddr virtio_mmio_base, 13 const hwaddr virtio_mmio_size, uint32_t mmio_irq, 14 long int start_index, int num); 15 16 #endif 17