KVM: More 0 -> NULL conversions

Signed-off-by: Avi Kivity <avi@qumranet.com>

+2 -2
+2 -2
drivers/kvm/kvm_main.c
··· 2229 2229 static int kvm_suspend(struct sys_device *dev, pm_message_t state) 2230 2230 { 2231 2231 decache_vcpus_on_cpu(raw_smp_processor_id()); 2232 - on_each_cpu(kvm_arch_ops->hardware_disable, 0, 0, 1); 2232 + on_each_cpu(kvm_arch_ops->hardware_disable, NULL, 0, 1); 2233 2233 return 0; 2234 2234 } 2235 2235 2236 2236 static int kvm_resume(struct sys_device *dev) 2237 2237 { 2238 - on_each_cpu(kvm_arch_ops->hardware_enable, 0, 0, 1); 2238 + on_each_cpu(kvm_arch_ops->hardware_enable, NULL, 0, 1); 2239 2239 return 0; 2240 2240 } 2241 2241