kvm tools: Remove useless empty lines for a call series in kvm__reset_vcpu

Also add a comment on function in kernel-doc style.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
This commit is contained in:
Cyrill Gorcunov
2015-06-01 16:39:41 +01:00
committed by Will Deacon
parent 9d850b3760
commit 6f7265cabc
+3 -3
View File
@@ -560,14 +560,14 @@ static void kvm__setup_sregs(struct kvm *self)
die_perror("KVM_SET_SREGS failed");
}
/**
* kvm__reset_vcpu - reset virtual CPU to a known state
*/
void kvm__reset_vcpu(struct kvm *self)
{
kvm__setup_sregs(self);
kvm__setup_regs(self);
kvm__setup_fpu(self);
kvm__setup_msrs(self);
}