diff options
author | Dave Martin <Dave.Martin@arm.com> | 2019-04-10 17:17:37 +0100 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2019-04-18 17:14:02 +0100 |
commit | 92e68b2b1ba004be55b2094fb8b5c11d0b24d11d (patch) | |
tree | 4b5d3c72acb18056be7c076b7e140094c0eb36f6 /arch/arm | |
parent | ecfb6ed4f66e68129c3ab675c68cb6578c28ef9b (diff) | |
download | linux-92e68b2b1ba004be55b2094fb8b5c11d0b24d11d.tar.gz linux-92e68b2b1ba004be55b2094fb8b5c11d0b24d11d.tar.bz2 linux-92e68b2b1ba004be55b2094fb8b5c11d0b24d11d.zip |
KVM: arm/arm64: Clean up vcpu finalization function parameter naming
Currently, the internal vcpu finalization functions use a different
name ("what") for the feature parameter than the name ("feature")
used in the documentation.
To avoid future confusion, this patch converts everything to use
the name "feature" consistently.
No functional change.
Suggested-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/include/asm/kvm_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/kvm_host.h b/arch/arm/include/asm/kvm_host.h index 7feddacbc207..fe7754315e9c 100644 --- a/arch/arm/include/asm/kvm_host.h +++ b/arch/arm/include/asm/kvm_host.h @@ -412,7 +412,7 @@ static inline int kvm_arm_setup_stage2(struct kvm *kvm, unsigned long type) return 0; } -static inline int kvm_arm_vcpu_finalize(struct kvm_vcpu *vcpu, int what) +static inline int kvm_arm_vcpu_finalize(struct kvm_vcpu *vcpu, int feature) { return -EINVAL; } |