aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-01-08 14:05:17 -0500
committerAvi Kivity <avi@redhat.com>2009-03-24 05:03:04 -0400
commitff81ff10b4417952919dcc0bd67effa9ceb411c0 (patch)
treea9f0a4f00441dc1f425aab0e694628eb6f817dca /arch/x86/kvm/svm.c
parenta26b73ad5e763db1b01cca6965ac3b65fe36e82a (diff)
KVM: SVM: Fix typo in has_svm()
Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r--arch/x86/kvm/svm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index 3a60c3f04e65..db5021b2b5a8 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -250,7 +250,7 @@ static int has_svm(void)
250 const char *msg; 250 const char *msg;
251 251
252 if (!cpu_has_svm(&msg)) { 252 if (!cpu_has_svm(&msg)) {
253 printk(KERN_INFO "has_svn: %s\n", msg); 253 printk(KERN_INFO "has_svm: %s\n", msg);
254 return 0; 254 return 0;
255 } 255 }
256 256