diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-06-19 07:47:42 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-06-19 07:47:42 +0000 |
commit | 92a16d7a9a904d5dd55d012b89ad798f0e4cd0bd (patch) | |
tree | c0e6c492b9ce2b4a433d745208ed71400644ca82 /qemu-common.h | |
parent | 8546b09965392da55fc1ce797ef774cb6e298468 (diff) |
apic: qdev conversion cleanup
Make APICState completely private to apic.c by using DeviceState
in external APIs.
Move apic_init() to pc.c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'qemu-common.h')
-rw-r--r-- | qemu-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-common.h b/qemu-common.h index 00998c3af5..3fb2f0b375 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -16,6 +16,7 @@ typedef struct QEMUTimer QEMUTimer; typedef struct QEMUFile QEMUFile; typedef struct QEMUBH QEMUBH; +typedef struct DeviceState DeviceState; /* Hack around the mess dyngen-exec.h causes: We need QEMU_NORETURN in files that cannot include the following headers without conflicts. This condition has @@ -224,7 +225,6 @@ typedef struct PCMCIACardState PCMCIACardState; typedef struct MouseTransformInfo MouseTransformInfo; typedef struct uWireSlave uWireSlave; typedef struct I2SCodec I2SCodec; -typedef struct DeviceState DeviceState; typedef struct SSIBus SSIBus; typedef struct EventNotifier EventNotifier; typedef struct VirtIODevice VirtIODevice; |