Commit 66507118 authored by Alok Tiwari's avatar Alok Tiwari Committed by Sean Christopherson
Browse files

KVM: selftests: Fix typo in hyperv cpuid test message



Fix a typo in hyperv_cpuid.c test assertion log:
replace "our of supported range" -> "out of supported range".

Signed-off-by: default avatarAlok Tiwari <alok.a.tiwari@oracle.com>
Link: https://lore.kernel.org/r/20250824181642.629297-1-alok.a.tiwari@oracle.com


Signed-off-by: default avatarSean Christopherson <seanjc@google.com>
parent 05f297c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ static void test_hv_cpuid(struct kvm_vcpu *vcpu, bool evmcs_expected)

		TEST_ASSERT((entry->function >= 0x40000000) &&
			    (entry->function <= 0x40000082),
			    "function %x is our of supported range",
			    "function %x is out of supported range",
			    entry->function);

		TEST_ASSERT(entry->index == 0,