Skip to content

Commit dd609a5

Browse files
rddunlapoupton
authored andcommitted
KVM: arm64: vgic-init: fix a kernel-doc warning
Change the function comment block to kernel-doc format to prevent a kernel-doc warning: arch/arm64/kvm/vgic/vgic-init.c:448: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Map the MMIO regions depending on the VGIC model exposed to the guest Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Marc Zyngier <maz@kernel.org> Cc: Oliver Upton <oliver.upton@linux.dev> Cc: James Morse <james.morse@arm.com> Cc: Suzuki K Poulose <suzuki.poulose@arm.com> Cc: Zenghui Yu <yuzenghui@huawei.com> Cc: linux-arm-kernel@lists.infradead.org Cc: kvmarm@lists.linux.dev Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <will@kernel.org> Reviewed-by: Suzuki K Poulose <suzuki.poulose@arm.com> Reviewed-by: Zenghui Yu <yuzenghui@huawei.com> Link: https://lore.kernel.org/r/20240117230714.31025-9-rdunlap@infradead.org Signed-off-by: Oliver Upton <oliver.upton@linux.dev>
1 parent 8ce7839 commit dd609a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

arch/arm64/kvm/vgic/vgic-init.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,13 +445,15 @@ int vgic_lazy_init(struct kvm *kvm)
445445
/* RESOURCE MAPPING */
446446

447447
/**
448+
* kvm_vgic_map_resources - map the MMIO regions
449+
* @kvm: kvm struct pointer
450+
*
448451
* Map the MMIO regions depending on the VGIC model exposed to the guest
449452
* called on the first VCPU run.
450453
* Also map the virtual CPU interface into the VM.
451454
* v2 calls vgic_init() if not already done.
452455
* v3 and derivatives return an error if the VGIC is not initialized.
453456
* vgic_ready() returns true if this function has succeeded.
454-
* @kvm: kvm struct pointer
455457
*/
456458
int kvm_vgic_map_resources(struct kvm *kvm)
457459
{

0 commit comments

Comments
 (0)