diff options
author | Jason Wang <wangborong@cdjrlc.com> | 2022-07-23 17:26:40 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-07-29 18:29:18 +0800 |
commit | af5d35b83f642399c719ea9a8599a13b8a0c4167 (patch) | |
tree | c8795b07b4e939845be276d2c1e3de3d7cf5e874 /crypto | |
parent | 7ae19d422c7da84b5f13bc08b98bd737a08d3a53 (diff) | |
download | linux-af5d35b83f642399c719ea9a8599a13b8a0c4167.tar.gz linux-af5d35b83f642399c719ea9a8599a13b8a0c4167.tar.bz2 linux-af5d35b83f642399c719ea9a8599a13b8a0c4167.zip |
crypto: tcrypt - Remove the static variable initialisations to NULL
Initialise global and static variable to NULL is always unnecessary.
Remove the unnecessary initialisations.
Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/tcrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index f56d1a9cf0a7..59eb8ec36664 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -58,7 +58,7 @@ */ static unsigned int sec; -static char *alg = NULL; +static char *alg; static u32 type; static u32 mask; static int mode; |