Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6732a5a authored by Zachary Amsden's avatar Zachary Amsden Committed by Avi Kivity
Browse files

KVM: Fix printk name error in svm.c

parent 0cca7907
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;
	}