diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2008-04-09 08:15:28 -0400 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-04-27 05:01:17 -0400 |
commit | ec077263b2bb841d973d82342b7fbc07bbad4246 (patch) | |
tree | f39213fad32b5b56d3ef8a120201bba32dee237f /arch/x86 | |
parent | 258ac8e066622df3fef94c8adf32596faae5ab71 (diff) |
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 <joerg.roedel@amd.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kvm/svm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index ad273468c08a..d7439ceb2ac2 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -878,10 +878,10 @@ set: | |||
878 | 878 | ||
879 | static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) | 879 | static void svm_set_cr4(struct kvm_vcpu *vcpu, unsigned long cr4) |
880 | { | 880 | { |
881 | vcpu->arch.cr4 = cr4; | 881 | vcpu->arch.cr4 = cr4; |
882 | if (!npt_enabled) | 882 | if (!npt_enabled) |
883 | cr4 |= X86_CR4_PAE; | 883 | cr4 |= X86_CR4_PAE; |
884 | to_svm(vcpu)->vmcb->save.cr4 = cr4; | 884 | to_svm(vcpu)->vmcb->save.cr4 = cr4; |
885 | } | 885 | } |
886 | 886 | ||
887 | static void svm_set_segment(struct kvm_vcpu *vcpu, | 887 | static void svm_set_segment(struct kvm_vcpu *vcpu, |