Commit 19d1408d authored by Avi Kivity's avatar Avi Kivity

KVM: More 0 -> NULL conversions

Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent 0152527b
...@@ -2229,13 +2229,13 @@ static void kvm_exit_debug(void) ...@@ -2229,13 +2229,13 @@ static void kvm_exit_debug(void)
static int kvm_suspend(struct sys_device *dev, pm_message_t state) static int kvm_suspend(struct sys_device *dev, pm_message_t state)
{ {
decache_vcpus_on_cpu(raw_smp_processor_id()); decache_vcpus_on_cpu(raw_smp_processor_id());
on_each_cpu(kvm_arch_ops->hardware_disable, 0, 0, 1); on_each_cpu(kvm_arch_ops->hardware_disable, NULL, 0, 1);
return 0; return 0;
} }
static int kvm_resume(struct sys_device *dev) static int kvm_resume(struct sys_device *dev)
{ {
on_each_cpu(kvm_arch_ops->hardware_enable, 0, 0, 1); on_each_cpu(kvm_arch_ops->hardware_enable, NULL, 0, 1);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment