mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
crypto: ccp - Fix non static symbol warning
Fixes the following sparse warning: drivers/crypto/ccp/ccp-dev.c:44:6: warning: symbol 'ccp_error_codes' was not declared. Should it be static? Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Acked-by: Gary R Hook <gary.hook@amd.com> Acked-by: Gary R Hook <gary.hook@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
4e518816a9
commit
ff4f44de44
@ -41,7 +41,7 @@ struct ccp_tasklet_data {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* Human-readable error strings */
|
/* Human-readable error strings */
|
||||||
char *ccp_error_codes[] = {
|
static char *ccp_error_codes[] = {
|
||||||
"",
|
"",
|
||||||
"ERR 01: ILLEGAL_ENGINE",
|
"ERR 01: ILLEGAL_ENGINE",
|
||||||
"ERR 02: ILLEGAL_KEY_ID",
|
"ERR 02: ILLEGAL_KEY_ID",
|
||||||
|
Loading…
Reference in New Issue
Block a user