summaryrefslogtreecommitdiff
path: root/kvm.h
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2012-07-26 15:35:12 +0100
committerAvi Kivity <avi@redhat.com>2012-08-09 16:16:54 +0300
commit3889c3fab10b63e170ab5193d2ce6be99a704e93 (patch)
treebf9995e753f18938727a34c46a18138fc0089803 /kvm.h
parent7ae26bd484a50810f8d29cb5399bc48108e50bec (diff)
downloadqemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.gz
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 'kvm.h')
-rw-r--r--kvm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm.h b/kvm.h
index 09818f38f1..744209d961 100644
--- a/kvm.h
+++ b/kvm.h
@@ -146,7 +146,7 @@ int kvm_arch_on_sigbus(int code, void *addr);
void kvm_arch_init_irq_routing(KVMState *s);
-int kvm_irqchip_set_irq(KVMState *s, int irq, int level);
+int kvm_set_irq(KVMState *s, int irq, int level);
int kvm_irqchip_send_msi(KVMState *s, MSIMessage msg);
void kvm_irqchip_add_irq_route(KVMState *s, int gsi, int irqchip, int pin);