kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kvm: qemu: fix kvm_tpr_opt_setup() args
@ 2009-01-07 10:16 Mark McLoughlin
  2009-01-07 10:19 ` Avi Kivity
  0 siblings, 1 reply; 2+ messages in thread
From: Mark McLoughlin @ 2009-01-07 10:16 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm

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(-)

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);
-- 
1.6.0.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] kvm: qemu: fix kvm_tpr_opt_setup() args
  2009-01-07 10:16 [PATCH] kvm: qemu: fix kvm_tpr_opt_setup() args Mark McLoughlin
@ 2009-01-07 10:19 ` Avi Kivity
  0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2009-01-07 10:19 UTC (permalink / raw)
  To: Mark McLoughlin; +Cc: kvm

Mark McLoughlin wrote:
> Fixes:
>
>   qemu-kvm.h:110: warning: function declaration isn’t a prototype
>
>   

Applied, thanks.

-- 
error compiling committee.c: too many arguments to function


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-07 10:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-07 10:16 [PATCH] kvm: qemu: fix kvm_tpr_opt_setup() args Mark McLoughlin
2009-01-07 10:19 ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).