aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2016-10-24 14:51:22 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2016-11-01 08:37:11 +0800
commitfc783341f0e65a28d95cba8d6998bf90304017c5 (patch)
treeff66462f218ce07dbef0ded112735f013da45ef9
parenthwrng: core - zeroize buffers with random data (diff)
downloadlinux-dev-fc783341f0e65a28d95cba8d6998bf90304017c5.tar.xz
linux-dev-fc783341f0e65a28d95cba8d6998bf90304017c5.zip
crypto: atmel - drop pointless static qualifier in atmel_aes_probe()
There is no need to have the 'struct atmel_aes_dev *aes_dd' variable static since new value always be assigned before use it. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--drivers/crypto/atmel-aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/atmel-aes.c b/drivers/crypto/atmel-aes.c
index 6b656f4a9378..0e3d0d655b96 100644
--- a/drivers/crypto/atmel-aes.c
+++ b/drivers/crypto/atmel-aes.c
@@ -2311,7 +2311,7 @@ aes_dd_err:
static int atmel_aes_remove(struct platform_device *pdev)
{
- static struct atmel_aes_dev *aes_dd;
+ struct atmel_aes_dev *aes_dd;
aes_dd = platform_get_drvdata(pdev);
if (!aes_dd)