diff options
author | Mark Cave-Ayland | 2018-02-28 21:32:39 +0100 |
---|---|---|
committer | David Gibson | 2018-03-06 03:16:29 +0100 |
commit | 8d085cf03b4fe511089b540c10244ba53b414b57 (patch) | |
tree | 81c4597d306383613683366d674e4cfb8f79a7a0 /include/hw/ppc/openpic_kvm.h | |
parent | mac_oldworld: use object link to pass heathrow PIC object to macio (diff) | |
download | qemu-8d085cf03b4fe511089b540c10244ba53b414b57.tar.gz qemu-8d085cf03b4fe511089b540c10244ba53b414b57.tar.xz qemu-8d085cf03b4fe511089b540c10244ba53b414b57.zip |
openpic: move KVM-specific declarations into separate openpic_kvm.h file
This is needed before the next patch because the target-dependent kvm stub
uses the existing kvm_openpic_connect_vcpu() declaration, making it impossible
to move the device-specific declarations into the same file without breaking
ppc-linux-user compilation.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw/ppc/openpic_kvm.h')
-rw-r--r-- | include/hw/ppc/openpic_kvm.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/hw/ppc/openpic_kvm.h b/include/hw/ppc/openpic_kvm.h new file mode 100644 index 0000000000..9ef4215257 --- /dev/null +++ b/include/hw/ppc/openpic_kvm.h @@ -0,0 +1,7 @@ +#ifndef OPENPIC_KVM_H +#define OPENPIC_KVM_H + +#define TYPE_KVM_OPENPIC "kvm-openpic" +int kvm_openpic_connect_vcpu(DeviceState *d, CPUState *cs); + +#endif /* OPENPIC_KVM_H */ |