Browse Source

KVM: ARM: Fix spelling in error message

s/unkown/unknown/

Signed-off-by: Christoffer Dall <cdall@cs.columbia.edu>
Christoffer Dall 12 years ago
parent
commit
df75921738
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/arm/kvm/handle_exit.c

+ 1 - 1
arch/arm/kvm/handle_exit.c

@@ -115,7 +115,7 @@ static exit_handle_fn kvm_get_exit_handler(struct kvm_vcpu *vcpu)
 
 	if (hsr_ec >= ARRAY_SIZE(arm_exit_handlers) ||
 	    !arm_exit_handlers[hsr_ec]) {
-		kvm_err("Unkown exception class: hsr: %#08x\n",
+		kvm_err("Unknown exception class: hsr: %#08x\n",
 			(unsigned int)kvm_vcpu_get_hsr(vcpu));
 		BUG();
 	}