From: Joerg Roedel Date: Wed, 9 Apr 2008 12:15:28 +0000 (+0200) Subject: KVM: SVM: indent svm_set_cr4 with tabs instead of spaces X-Git-Tag: v2.6.26-rc1~1028^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec077263b2bb841d973d82342b7fbc07bbad4246;p=platform%2Fkernel%2Flinux-stable.git KVM: SVM: indent svm_set_cr4 with tabs instead of spaces The svm_set_cr4 function is indented with spaces. This patch replaces them with tabs. Signed-off-by: Joerg Roedel Signed-off-by: Avi Kivity --- diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index ad27346..d7439ce 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -878,10 +878,10 @@ set: static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) { - vcpu->arch.cr4 = cr4; - if (!npt_enabled) - cr4 |= X86_CR4_PAE; - to_svm(vcpu)->vmcb->save.cr4 = cr4; + vcpu->arch.cr4 = cr4; + if (!npt_enabled) + cr4 |= X86_CR4_PAE; + to_svm(vcpu)->vmcb->save.cr4 = cr4; } static void svm_set_segment(struct kvm_vcpu *vcpu,