diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-13 07:36:47 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-09-23 16:02:22 -0400 |
commit | 4903e9694d7681226802aaaffce5500de69230e1 (patch) | |
tree | 3f008cc11538f781b61dcc28c521eb30731724dc | |
parent | 034568e84f768cfa512884e4203c8bce035e46cc (diff) |
crypto: tegra-aes - Staticize tegra_aes_cra_exit
'tegra_aes_cra_exit' is used only in this file.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | drivers/crypto/tegra-aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/tegra-aes.c b/drivers/crypto/tegra-aes.c index 7f42bfe9fc81..403282f01af9 100644 --- a/drivers/crypto/tegra-aes.c +++ b/drivers/crypto/tegra-aes.c | |||
@@ -795,7 +795,7 @@ static int tegra_aes_cra_init(struct crypto_tfm *tfm) | |||
795 | return 0; | 795 | return 0; |
796 | } | 796 | } |
797 | 797 | ||
798 | void tegra_aes_cra_exit(struct crypto_tfm *tfm) | 798 | static void tegra_aes_cra_exit(struct crypto_tfm *tfm) |
799 | { | 799 | { |
800 | struct tegra_aes_ctx *ctx = | 800 | struct tegra_aes_ctx *ctx = |
801 | crypto_ablkcipher_ctx((struct crypto_ablkcipher *)tfm); | 801 | crypto_ablkcipher_ctx((struct crypto_ablkcipher *)tfm); |