fixup! pkvm: Add option to spawn a protected vm in pkvm
diff --git a/arm/aarch64/kvm.c b/arm/aarch64/kvm.c
index 545ca76..c4da927 100644
--- a/arm/aarch64/kvm.c
+++ b/arm/aarch64/kvm.c
@@ -176,8 +176,12 @@
 
 	type = KVM_VM_TYPE_ARM_IPA_SIZE(ipa_bits);
 
-	if (kvm->cfg.pkvm)
+	if (kvm->cfg.pkvm) {
 		type |= (1U << 31);
+		pr_debug("VM type set to protected 0x%x", type);
+	} else {
+		pr_debug("VM type set to non-protected 0x%x", type);
+	}
 
 	return type;
 }