summaryrefslogtreecommitdiffstats
path: root/hw/kvm/i8259.c
diff options
context:
space:
mode:
authorPeter Maydell2012-07-26 16:35:12 +0200
committerAvi Kivity2012-08-09 15:16:54 +0200
commit3889c3fab10b63e170ab5193d2ce6be99a704e93 (patch)
treebf9995e753f18938727a34c46a18138fc0089803 /hw/kvm/i8259.c
parentkvm: Decouple 'async interrupt delivery' from 'kernel irqchip' (diff)
downloadqemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.gz
qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.xz
qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.zip
kvm: Rename kvm_irqchip_set_irq() to kvm_set_irq()
Rename the function kvm_irqchip_set_irq() to kvm_set_irq(), since it can be used for sending (asynchronous) interrupts whether there is a full irqchip model in the kernel or not. (We don't include 'async' in the function name since asynchronous is the normal case.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'hw/kvm/i8259.c')
-rw-r--r--hw/kvm/i8259.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kvm/i8259.c b/hw/kvm/i8259.c
index 94d1b9aa95..1e24cd4f36 100644
--- a/hw/kvm/i8259.c
+++ b/hw/kvm/i8259.c
@@ -94,7 +94,7 @@ static void kvm_pic_set_irq(void *opaque, int irq, int level)
{
int delivered;
- delivered = kvm_irqchip_set_irq(kvm_state, irq, level);
+ delivered = kvm_set_irq(kvm_state, irq, level);
apic_report_irq_delivered(delivered);
}