diff options
author | Zachary Amsden <zamsden@redhat.com> | 2009-09-29 21:38:36 (GMT) |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-12-03 07:32:13 (GMT) |
commit | e6732a5af9dfcc87078706a1598df0efe5010f73 (patch) | |
tree | d3a68c03f6042f68f1de282939d21bf33cbf9619 /arch/x86/kvm/svm.c | |
parent | 0cca790753bf0cab4b070801a46df8e1297c17f6 (diff) | |
download | linux-fsl-qoriq-e6732a5af9dfcc87078706a1598df0efe5010f73.tar.xz |
KVM: Fix printk name error in svm.c
Signed-off-by: Zachary Amsden <zamsden@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 9a4daca..d1036ce 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -330,13 +330,14 @@ static int svm_hardware_enable(void *garbage) return -EBUSY; if (!has_svm()) { - printk(KERN_ERR "svm_cpu_init: err EOPNOTSUPP on %d\n", me); + printk(KERN_ERR "svm_hardware_enable: err EOPNOTSUPP on %d\n", + me); return -EINVAL; } svm_data = per_cpu(svm_data, me); if (!svm_data) { - printk(KERN_ERR "svm_cpu_init: svm_data is NULL on %d\n", + printk(KERN_ERR "svm_hardware_enable: svm_data is NULL on %d\n", me); return -EINVAL; } |