diff options
author | Igor Mammedov <imammedo@redhat.com> | 2013-04-25 16:05:30 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-05-01 13:04:19 +0200 |
commit | 5f8df3ce6e0a057ec23cea74b6e629e59e085ac4 (patch) | |
tree | 2917b0fcd1e9b1f3446b06e19c44db06e9ecfba6 /hw | |
parent | baaeda08ff34ad17150b50a6f52d0faec9f3db36 (diff) | |
download | qemu-5f8df3ce6e0a057ec23cea74b6e629e59e085ac4.tar.gz qemu-5f8df3ce6e0a057ec23cea74b6e629e59e085ac4.tar.bz2 qemu-5f8df3ce6e0a057ec23cea74b6e629e59e085ac4.zip |
kvmvapic: Make dependency on sysbus.h explicit
Allows kvmvapic to compile if sysbus.h is removed from apic_internal.h,
from which it is indirectly included.
sysbus.h will be removed from apic_internal.h after converting
APICs to ICCDevice.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/kvmvapic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/i386/kvmvapic.c b/hw/i386/kvmvapic.c index 3a10c0710c..5b558aa180 100644 --- a/hw/i386/kvmvapic.c +++ b/hw/i386/kvmvapic.c @@ -12,6 +12,7 @@ #include "sysemu/cpus.h" #include "sysemu/kvm.h" #include "hw/i386/apic_internal.h" +#include "hw/sysbus.h" #define VAPIC_IO_PORT 0x7e |