diff options
| author | Jan Kiszka <jan.kiszka@siemens.com> | 2011-08-22 17:46:31 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-22 14:37:03 -0500 |
| commit | 1f6f408c8c38b83b9e3e4577b680dfd686ffe37a (patch) | |
| tree | 5172d9f6a700211d911febcdf3b970d46c666a5b /hw/apic.h | |
| parent | eae74cf906942999bf70e94f034f95c7f831ec63 (diff) | |
| download | focaccia-qemu-1f6f408c8c38b83b9e3e4577b680dfd686ffe37a.tar.gz focaccia-qemu-1f6f408c8c38b83b9e3e4577b680dfd686ffe37a.zip | |
target-i386: Remove unused polarity arguments from APIC API
Polarity of external interrupts needs to be handled in the IOAPIC. Passing it to the APIC is pointless. So remove all these arguments. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/apic.h')
| -rw-r--r-- | hw/apic.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/apic.h b/hw/apic.h index 8a0c9d0bf6..a5c910fe0a 100644 --- a/hw/apic.h +++ b/hw/apic.h @@ -4,10 +4,8 @@ #include "qemu-common.h" /* apic.c */ -void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, - uint8_t delivery_mode, - uint8_t vector_num, uint8_t polarity, - uint8_t trigger_mode); +void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode, + uint8_t vector_num, uint8_t trigger_mode); int apic_accept_pic_intr(DeviceState *s); void apic_deliver_pic_intr(DeviceState *s, int level); int apic_get_interrupt(DeviceState *s); |