diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2019-12-12 17:15:43 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-12-17 19:33:49 +0100 |
| commit | 852c27e2ba99939e13a8e87f0d1a43aaec805f56 (patch) | |
| tree | 9d55fd3c7eff15b99b3497447b1b8de1f0a39ca8 /include/hw/intc | |
| parent | b54f33c4e07758f05ead2c27a2dcd1c1b87a34e7 (diff) | |
| download | focaccia-qemu-852c27e2ba99939e13a8e87f0d1a43aaec805f56.tar.gz focaccia-qemu-852c27e2ba99939e13a8e87f0d1a43aaec805f56.zip | |
hw: replace hw/i386/pc.h with a header just for the i8259
Remove the need to include i386/pc.h to get to the i8259 functions. This is enough to remove the inclusion of hw/i386/pc.h from all non-x86 files. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/intc')
| -rw-r--r-- | include/hw/intc/i8259.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/hw/intc/i8259.h b/include/hw/intc/i8259.h new file mode 100644 index 0000000000..e2b1e8c59a --- /dev/null +++ b/include/hw/intc/i8259.h @@ -0,0 +1,12 @@ +#ifndef HW_I8259_H +#define HW_I8259_H + +/* i8259.c */ + +extern DeviceState *isa_pic; +qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq); +qemu_irq *kvm_i8259_init(ISABus *bus); +int pic_get_output(DeviceState *d); +int pic_read_irq(DeviceState *d); + +#endif |