diff mbox

kvm: qemu: fix kvm_tpr_opt_setup() args

Message ID 1231323402.5050.6.camel@localhost.localdomain (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Mark McLoughlin Jan. 7, 2009, 10:16 a.m. UTC
Fixes:

  qemu-kvm.h:110: warning: function declaration isn’t a prototype

Signed-off-by: Mark McLoughlin <markmc@redhat.com>
---
 qemu/kvm-tpr-opt.c |    2 +-
 qemu/qemu-kvm.h    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Avi Kivity Jan. 7, 2009, 10:19 a.m. UTC | #1
Mark McLoughlin wrote:
> Fixes:
>
>   qemu-kvm.h:110: warning: function declaration isn’t a prototype
>
>   

Applied, thanks.
diff mbox

Patch

diff --git a/qemu/kvm-tpr-opt.c b/qemu/kvm-tpr-opt.c
index f2a3a1e..b3d26aa 100644
--- a/qemu/kvm-tpr-opt.c
+++ b/qemu/kvm-tpr-opt.c
@@ -370,7 +370,7 @@  static void vtpr_ioport_write(void *opaque, uint32_t addr, uint32_t val)
     enable_vapic(env);
 }
 
-void kvm_tpr_opt_setup(CPUState *env)
+void kvm_tpr_opt_setup(void)
 {
     register_savevm("kvm-tpr-opt", 0, 1, tpr_save, tpr_load, NULL);
     register_ioport_write(0x7e, 1, 1, vtpr_ioport_write, NULL);
diff --git a/qemu/qemu-kvm.h b/qemu/qemu-kvm.h
index 896df4e..12bd5a0 100644
--- a/qemu/qemu-kvm.h
+++ b/qemu/qemu-kvm.h
@@ -107,7 +107,7 @@  void qemu_kvm_aio_wait_end(void);
 
 void qemu_kvm_notify_work(void);
 
-void kvm_tpr_opt_setup();
+void kvm_tpr_opt_setup(void);
 void kvm_tpr_access_report(CPUState *env, uint64_t rip, int is_write);
 int handle_tpr_access(void *opaque, int vcpu,
 			     uint64_t rip, int is_write);