diff options
author | Radim Krčmář <rkrcmar@redhat.com> | 2014-08-28 09:13:03 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-29 10:35:55 -0400 |
commit | 13a34e067eab24fec882e1834fbf2cc31911d474 (patch) | |
tree | 62efa3909464b023f142634b18d3c98cc489b00d /arch/ia64 | |
parent | 0865e636aef751966e6e0f8950a26bc7391e923c (diff) |
KVM: remove garbage arg to *hardware_{en,dis}able
In the beggining was on_each_cpu(), which required an unused argument to
kvm_arch_ops.hardware_{en,dis}able, but this was soon forgotten.
Remove unnecessary arguments that stem from this.
Signed-off-by: Radim KrÄmář <rkrcmar@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index 5e14dcaf844e..ec6b9acb6bea 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c | |||
@@ -125,7 +125,7 @@ long ia64_pal_vp_create(u64 *vpd, u64 *host_iva, u64 *opt_handler) | |||
125 | 125 | ||
126 | static DEFINE_SPINLOCK(vp_lock); | 126 | static DEFINE_SPINLOCK(vp_lock); |
127 | 127 | ||
128 | int kvm_arch_hardware_enable(void *garbage) | 128 | int kvm_arch_hardware_enable(void) |
129 | { | 129 | { |
130 | long status; | 130 | long status; |
131 | long tmp_base; | 131 | long tmp_base; |
@@ -160,7 +160,7 @@ int kvm_arch_hardware_enable(void *garbage) | |||
160 | return 0; | 160 | return 0; |
161 | } | 161 | } |
162 | 162 | ||
163 | void kvm_arch_hardware_disable(void *garbage) | 163 | void kvm_arch_hardware_disable(void) |
164 | { | 164 | { |
165 | 165 | ||
166 | long status; | 166 | long status; |