diff options
author | Bagas Sanjaya <[email protected]> | 2022-05-06 14:07:47 +0700 |
---|---|---|
committer | Michael Ellerman <[email protected]> | 2022-05-18 23:27:24 +1000 |
commit | d53c36e6c83863fde4a2748411c31bc4853a0936 (patch) | |
tree | 04debe609acda6c4b693fafe50bbf7d691d289be | |
parent | 2852ebfa10afdcefff35ec72c8da97141df9845c (diff) |
KVM: PPC: Book3S HV: remove extraneous asterisk from rm_host_ipi_action() comment
kernel test robot reported kernel-doc warning for rm_host_ipi_action():
arch/powerpc/kvm/book3s_hv_rm_xics.c:887: warning: This comment starts with '/**', but isn't a kernel-doc comment.
* Host Operations poked by RM KVM
Since the function is static, remove the extraneous (second) asterisk at
the head of function comment.
Fixes: 0c2a66062470cd ("KVM: PPC: Book3S HV: Host side kick VCPU when poked by real-mode KVM")
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Bagas Sanjaya <[email protected]>
Signed-off-by: Michael Ellerman <[email protected]>
Link: https://lore.kernel.org/linux-doc/[email protected]/
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | arch/powerpc/kvm/book3s_hv_rm_xics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/book3s_hv_rm_xics.c b/arch/powerpc/kvm/book3s_hv_rm_xics.c index 587c33fc4564..6e16bd751c84 100644 --- a/arch/powerpc/kvm/book3s_hv_rm_xics.c +++ b/arch/powerpc/kvm/book3s_hv_rm_xics.c @@ -883,7 +883,7 @@ long kvmppc_deliver_irq_passthru(struct kvm_vcpu *vcpu, /* --- Non-real mode XICS-related built-in routines --- */ -/** +/* * Host Operations poked by RM KVM */ static void rm_host_ipi_action(int action, void *data) |