summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/kvm/aarch64/hypercalls.c
diff options
context:
space:
mode:
authorSean Christopherson <seanjc@google.com>2022-02-15 10:27:55 -0800
committerPaolo Bonzini <pbonzini@redhat.com>2022-06-11 10:14:58 -0400
commit2b38a7398f20dbbfa88689819b21967489d284f5 (patch)
tree45112ab60c9ae999ce88b539cbcf9324dda53a5c /tools/testing/selftests/kvm/aarch64/hypercalls.c
parentccc82ba6bea45189a516c97480b2b70406832f35 (diff)
KVM: selftests: Add another underscore to inner ioctl() helpers
Add a second underscore to inner ioctl() helpers to better align with commonly accepted kernel coding style, and to allow using a single underscore variant in the future for macro shenanigans. Signed-off-by: Sean Christopherson <seanjc@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests/kvm/aarch64/hypercalls.c')
-rw-r--r--tools/testing/selftests/kvm/aarch64/hypercalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/aarch64/hypercalls.c b/tools/testing/selftests/kvm/aarch64/hypercalls.c
index 41e0210b7a5e..1eb9738453b4 100644
--- a/tools/testing/selftests/kvm/aarch64/hypercalls.c
+++ b/tools/testing/selftests/kvm/aarch64/hypercalls.c
@@ -148,7 +148,7 @@ static int set_fw_reg(struct kvm_vm *vm, uint64_t id, uint64_t val)
.addr = (uint64_t)&val,
};
- return _vcpu_ioctl(vm, 0, KVM_SET_ONE_REG, &reg);
+ return __vcpu_ioctl(vm, 0, KVM_SET_ONE_REG, &reg);
}
static void get_fw_reg(struct kvm_vm *vm, uint64_t id, uint64_t *addr)