Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

KEYS: asymmetric: Fix kerneldoc

Fix W=1 compile warnings (invalid kerneldoc):

crypto/asymmetric_keys/asymmetric_type.c:160: warning: Function parameter or member 'kid1' not described in 'asymmetric_key_id_same'
crypto/asymmetric_keys/asymmetric_type.c:160: warning: Function parameter or member 'kid2' not described in 'asymmetric_key_id_same'
crypto/asymmetric_keys/asymmetric_type.c:160: warning: Excess function parameter 'kid_1' description in 'asymmetric_key_id_same'
crypto/asymmetric_keys/asymmetric_type.c:160: warning: Excess function parameter 'kid_2' description in 'asymmetric_key_id_same'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Ben Boeckel <mathstuf@gmail.com>
Reviewed-by: Jarkko Sakkinen <jarkko.sakkinen@iki.fi>

authored by

Krzysztof Kozlowski and committed by
David Howells
60f0f0b3 272a1219

+4 -2
+4 -2
crypto/asymmetric_keys/asymmetric_type.c
··· 152 152 153 153 /** 154 154 * asymmetric_key_id_same - Return true if two asymmetric keys IDs are the same. 155 - * @kid_1, @kid_2: The key IDs to compare 155 + * @kid1: The key ID to compare 156 + * @kid2: The key ID to compare 156 157 */ 157 158 bool asymmetric_key_id_same(const struct asymmetric_key_id *kid1, 158 159 const struct asymmetric_key_id *kid2) ··· 169 168 /** 170 169 * asymmetric_key_id_partial - Return true if two asymmetric keys IDs 171 170 * partially match 172 - * @kid_1, @kid_2: The key IDs to compare 171 + * @kid1: The key ID to compare 172 + * @kid2: The key ID to compare 173 173 */ 174 174 bool asymmetric_key_id_partial(const struct asymmetric_key_id *kid1, 175 175 const struct asymmetric_key_id *kid2)