diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-02 17:48:26 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-03 15:47:48 +0200 |
commit | 48663349813144224d2b1cb6a85a893c2aa901ad (patch) | |
tree | 9d9dd390767b7f1755f2dd79db4fcb516c933a50 /include/qemu | |
parent | fe5943fecc7c9a55d975e9e55caf527057a94c37 (diff) | |
download | qemu-48663349813144224d2b1cb6a85a893c2aa901ad.zip qemu-48663349813144224d2b1cb6a85a893c2aa901ad.tar.gz qemu-48663349813144224d2b1cb6a85a893c2aa901ad.tar.bz2 |
kvm: move target-dependent interrupt routing out of kvm-all.c
Let hw/hyperv/hyperv.c and hw/intc/s390_flic.c handle (respectively)
SynIC and adapter routes, removing the code from target-independent
files. This also removes the only occurrence of AdapterInfo outside
s390 code, so remove that from typedefs.h.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/typedefs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 5d999e2..2ff50bf 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -23,7 +23,6 @@ */ typedef struct AccelCPUState AccelCPUState; typedef struct AccelState AccelState; -typedef struct AdapterInfo AdapterInfo; typedef struct AddressSpace AddressSpace; typedef struct AioContext AioContext; typedef struct Aml Aml; |