diff options
author | Alexandru Elisei <alexandru.elisei@arm.com> | 2019-08-15 11:56:22 +0200 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2019-08-18 19:44:04 +0200 |
commit | 0ed5f5d63963673ccdd00d101637bf56e6d3d6dc (patch) | |
tree | a2ac323985c958d50fc9a50c8601ef736e1a7100 /virt/kvm/arm/vgic/vgic-v3.c | |
parent | arm64/kvm: Remove VMID rollover I-cache maintenance (diff) | |
download | linux-0ed5f5d63963673ccdd00d101637bf56e6d3d6dc.tar.xz linux-0ed5f5d63963673ccdd00d101637bf56e6d3d6dc.zip |
KVM: arm/arm64: vgic: Make function comments match function declarations
Since commit 503a62862e8f ("KVM: arm/arm64: vgic: Rely on the GIC driver to
parse the firmware tables"), the vgic_v{2,3}_probe functions stopped using
a DT node. Commit 909777324588 ("KVM: arm/arm64: vgic-new: vgic_init:
implement kvm_vgic_hyp_init") changed the functions again, and now they
require exactly one argument, a struct gic_kvm_info populated by the GIC
driver. Unfortunately the comments regressed and state that a DT node is
used instead. Change the function comments to reflect the current
prototypes.
Signed-off-by: Alexandru Elisei <alexandru.elisei@arm.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Diffstat (limited to 'virt/kvm/arm/vgic/vgic-v3.c')
-rw-r--r-- | virt/kvm/arm/vgic/vgic-v3.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/virt/kvm/arm/vgic/vgic-v3.c b/virt/kvm/arm/vgic/vgic-v3.c index 0c653a1e5215..30955d162a01 100644 --- a/virt/kvm/arm/vgic/vgic-v3.c +++ b/virt/kvm/arm/vgic/vgic-v3.c @@ -570,10 +570,11 @@ static int __init early_gicv4_enable(char *buf) early_param("kvm-arm.vgic_v4_enable", early_gicv4_enable); /** - * vgic_v3_probe - probe for a GICv3 compatible interrupt controller in DT - * @node: pointer to the DT node + * vgic_v3_probe - probe for a VGICv3 compatible interrupt controller + * @info: pointer to the GIC description * - * Returns 0 if a GICv3 has been found, returns an error code otherwise + * Returns 0 if the VGICv3 has been probed successfully, returns an error code + * otherwise */ int vgic_v3_probe(const struct gic_kvm_info *info) { |