diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-07-26 15:35:12 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-08-09 16:16:54 +0300 |
commit | 3889c3fab10b63e170ab5193d2ce6be99a704e93 (patch) | |
tree | bf9995e753f18938727a34c46a18138fc0089803 /kvm.h | |
parent | 7ae26bd484a50810f8d29cb5399bc48108e50bec (diff) | |
download | qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.zip qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.gz qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |