Skip to content

Commit ef97e77

Browse files
esnowbergjarkkojs
authored andcommitted
KEYS: Add missing function documentation
Compiling with 'W=1' results in warnings that 'Function parameter or member not described' Add the missing parameters for restrict_link_by_builtin_and_secondary_trusted and restrict_link_to_builtin_trusted. Use /* instead of /** for get_builtin_and_secondary_restriction, since it is a static function. Fix wrong function name restrict_link_to_builtin_trusted. Fixes: d3bfe84 ("certs: Add a secondary system keyring that can be added to dynamically") Signed-off-by: Eric Snowberg <[email protected]> Reviewed-by: Petr Vorel <[email protected]> Reviewed-by: Mimi Zohar <[email protected]> Reviewed-by: Jarkko Sakkinen <[email protected]> Tested-by: Mimi Zohar <[email protected]> Signed-off-by: Jarkko Sakkinen <[email protected]>
1 parent 7f8da99 commit ef97e77

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

certs/system_keyring.c

+11-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ extern __initconst const unsigned long system_certificate_list_size;
3333
extern __initconst const unsigned long module_cert_size;
3434

3535
/**
36-
* restrict_link_to_builtin_trusted - Restrict keyring addition by built in CA
36+
* restrict_link_by_builtin_trusted - Restrict keyring addition by built-in CA
37+
* @dest_keyring: Keyring being linked to.
38+
* @type: The type of key being added.
39+
* @payload: The payload of the new key.
40+
* @restriction_key: A ring of keys that can be used to vouch for the new cert.
3741
*
3842
* Restrict the addition of keys into a keyring based on the key-to-be-added
3943
* being vouched for by a key in the built in system keyring.
@@ -50,7 +54,11 @@ int restrict_link_by_builtin_trusted(struct key *dest_keyring,
5054
#ifdef CONFIG_SECONDARY_TRUSTED_KEYRING
5155
/**
5256
* restrict_link_by_builtin_and_secondary_trusted - Restrict keyring
53-
* addition by both builtin and secondary keyrings
57+
* addition by both built-in and secondary keyrings.
58+
* @dest_keyring: Keyring being linked to.
59+
* @type: The type of key being added.
60+
* @payload: The payload of the new key.
61+
* @restrict_key: A ring of keys that can be used to vouch for the new cert.
5462
*
5563
* Restrict the addition of keys into a keyring based on the key-to-be-added
5664
* being vouched for by a key in either the built-in or the secondary system
@@ -75,7 +83,7 @@ int restrict_link_by_builtin_and_secondary_trusted(
7583
secondary_trusted_keys);
7684
}
7785

78-
/**
86+
/*
7987
* Allocate a struct key_restriction for the "builtin and secondary trust"
8088
* keyring. Only for use in system_trusted_keyring_init().
8189
*/

0 commit comments

Comments
 (0)