diff options
| author | Peter Maydell | 2019-01-10 16:33:28 +0100 |
|---|---|---|
| committer | Peter Maydell | 2019-01-10 16:33:28 +0100 |
| commit | d246ff5d3904ea540127228df2bda8af2a294804 (patch) | |
| tree | dfa1bdf78b423fc83ac87954aa3267b94b00ce48 /include/hw | |
| parent | Merge remote-tracking branch 'remotes/famz/tags/staging-pull-request' into st... (diff) | |
| parent | ioapic: use TYPE_FOO MACRO than constant string (diff) | |
| download | qemu-d246ff5d3904ea540127228df2bda8af2a294804.tar.gz qemu-d246ff5d3904ea540127228df2bda8af2a294804.tar.xz qemu-d246ff5d3904ea540127228df2bda8af2a294804.zip | |
Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging
Trivial patches for 4.0 (2019-01-09)
# gpg: Signature made Wed 09 Jan 2019 13:06:58 GMT
# gpg: using RSA key F30C38BD3F2FBE3C
# gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>"
# gpg: aka "Laurent Vivier <laurent@vivier.eu>"
# gpg: aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>"
# Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F 5173 F30C 38BD 3F2F BE3C
* remotes/vivier2/tags/trivial-patches-pull-request:
ioapic: use TYPE_FOO MACRO than constant string
trivial: Don't include isa.h if it is not really necessary
hw/audio/marvell: Don't include unnecessary i2c.h header file
qom: Include qemu/fprintf-fn.h in cpu.h
hw/core: fix whitespace in a sentence
typedefs: (Re-)sort entries alphabetically
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/i386/ioapic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/hw/i386/ioapic.h b/include/hw/i386/ioapic.h index 9c8816f11f..59fcb158a7 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 */ |
