Skip to content

Commit

Permalink
crypto: drbg - drbg_exit() can be static
Browse files Browse the repository at this point in the history
CC: Stephan Mueller <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Fengguang Wu authored and herbertx committed Jul 10, 2014
1 parent ac1a2b4 commit 96956ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/drbg.c
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ static int __init drbg_init(void)
return crypto_register_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
}

void __exit drbg_exit(void)
static void __exit drbg_exit(void)
{
crypto_unregister_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
}
Expand Down

0 comments on commit 96956ae

Please sign in to comment.