mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 02:15:57 +00:00
integrity: Make function integrity_add_key() static
The sparse tool complains as follows: security/integrity/digsig.c:146:12: warning: symbol 'integrity_add_key' was not declared. Should it be static? This function is not used outside of digsig.c, so this commit marks it static. Reported-by: Hulk Robot <hulkci@huawei.com> Fixes: 60740accf784 ("integrity: Load certs to the platform keyring") Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Reviewed-by: Kees Cook <keescook@chromium.org> Reviewed-by: Nayna Jain <nayna@linux.ibm.com> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
parent
cccb0efdef
commit
f6692213b5
@ -143,8 +143,8 @@ out:
|
||||
return __integrity_init_keyring(id, perm, restriction);
|
||||
}
|
||||
|
||||
int __init integrity_add_key(const unsigned int id, const void *data,
|
||||
off_t size, key_perm_t perm)
|
||||
static int __init integrity_add_key(const unsigned int id, const void *data,
|
||||
off_t size, key_perm_t perm)
|
||||
{
|
||||
key_ref_t key;
|
||||
int rc = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user