Skip to content

Commit 7b424ff

Browse files
committed
KVM: arm64: Don't use kerneldoc comment for arm64_check_features()
A double-asterisk opening mark to the comment (i.e. '/**') indicates a comment block is in the kerneldoc format. There's automation in place to validate that kerneldoc blocks actually adhere to the formatting rules. The function comment for arm64_check_features() isn't kerneldoc; use a 'regular' comment to silence automation warnings. Link: https://lore.kernel.org/all/[email protected]/ Reviewed-by: Zenghui Yu <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Oliver Upton <[email protected]>
1 parent ce9ecca commit 7b424ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/kvm/sys_regs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ static s64 kvm_arm64_ftr_safe_value(u32 id, const struct arm64_ftr_bits *ftrp,
12281228
return arm64_ftr_safe_value(&kvm_ftr, new, cur);
12291229
}
12301230

1231-
/**
1231+
/*
12321232
* arm64_check_features() - Check if a feature register value constitutes
12331233
* a subset of features indicated by the idreg's KVM sanitised limit.
12341234
*

0 commit comments

Comments
 (0)