aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLi Qiang <liq3ea@163.com>2019-01-04 18:38:31 -0800
committerLaurent Vivier <laurent@vivier.eu>2019-01-09 11:33:47 +0100
commit34bec7a8d04f23d6258dcf338894956b945673a5 (patch)
tree2807c9ac3753cd1e722318b46e64a26af5af8be4 /include
parent0cd0589ecf4248c489c2bdbeb1192d16e96d77e1 (diff)
downloadqemu-34bec7a8d04f23d6258dcf338894956b945673a5.zip
qemu-34bec7a8d04f23d6258dcf338894956b945673a5.tar.gz
qemu-34bec7a8d04f23d6258dcf338894956b945673a5.tar.bz2
ioapic: use TYPE_FOO MACRO than constant string
Make them more QOMConventional. Cc:qemu-trivial@nongnu.org Signed-off-by: Li Qiang <liq3ea@163.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20190105023831.66910-1-liq3ea@163.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include')
-rw-r--r--include/hw/i386/ioapic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/i386/ioapic.h b/include/hw/i386/ioapic.h
index 9c8816f..59fcb15 100644
--- a/include/hw/i386/ioapic.h
+++ b/include/hw/i386/ioapic.h
@@ -23,6 +23,9 @@
#define IOAPIC_NUM_PINS 24
#define IO_APIC_DEFAULT_ADDRESS 0xfec00000
+#define TYPE_KVM_IOAPIC "kvm-ioapic"
+#define TYPE_IOAPIC "ioapic"
+
void ioapic_eoi_broadcast(int vector);
#endif /* HW_IOAPIC_H */