IMA: remove -Wmissing-prototypes warning
authorAustin Kim <austin.kim@lge.com>
Tue, 29 Jun 2021 13:50:50 +0000 (14:50 +0100)
committerMimi Zohar <zohar@linux.ibm.com>
Fri, 23 Jul 2021 12:05:06 +0000 (08:05 -0400)
commita32ad90426a9c8eb3915eed26e08ce133bd9e0da
tree90b0b97987dccd447f9e668b6f23f274b895b0de
parent2734d6c1b1a089fb593ef6a23d4b70903526fe0c
IMA: remove -Wmissing-prototypes warning

With W=1 build, the compiler throws warning message as below:

   security/integrity/ima/ima_mok.c:24:12: warning:
   no previous prototype for ‘ima_mok_init’ [-Wmissing-prototypes]
       __init int ima_mok_init(void)

Silence the warning by adding static keyword to ima_mok_init().

Signed-off-by: Austin Kim <austin.kim@lge.com>
Fixes: 41c89b64d718 ("IMA: create machine owner and blacklist keyrings")
Cc: stable@vger.kernel.org
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
security/integrity/ima/ima_mok.c