diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2013-04-15 09:19:22 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-15 15:16:34 +0200 |
commit | 0445259ba686f9ddf395f700c7d5b1ac400a451c (patch) | |
tree | f7bde207b666fa32ccf2ff84d6943f8582da3786 /hw | |
parent | 174d5d990c7b08e75677402a71c834b000171c94 (diff) | |
download | qemu-0445259ba686f9ddf395f700c7d5b1ac400a451c.tar.gz qemu-0445259ba686f9ddf395f700c7d5b1ac400a451c.tar.bz2 qemu-0445259ba686f9ddf395f700c7d5b1ac400a451c.zip |
acpi: move declarations from pc.h to acpi.h
Functions defined in acpi/ should be declared in
acpi.h
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/pc.c | 1 | ||||
-rw-r--r-- | hw/i386/pc_piix.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 8d75b34218..0d6e72b209 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -52,6 +52,7 @@ #include "sysemu/arch_init.h" #include "qemu/bitmap.h" #include "qemu/config-file.h" +#include "hw/acpi/acpi.h" /* debug PC/ISA interrupts */ //#define DEBUG_IRQ diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index cff8013b83..943758ad30 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -43,6 +43,7 @@ #include "hw/xen/xen.h" #include "exec/memory.h" #include "exec/address-spaces.h" +#include "hw/acpi/acpi.h" #include "cpu.h" #ifdef CONFIG_XEN # include <xen/hvm/hvm_info_table.h> |