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>
This commit is contained in:
parent
7ae19d422c
commit
af5d35b83f
|
@ -58,7 +58,7 @@
|
|||
*/
|
||||
static unsigned int sec;
|
||||
|
||||
static char *alg = NULL;
|
||||
static char *alg;
|
||||
static u32 type;
|
||||
static u32 mask;
|
||||
static int mode;
|
||||
|
|
Loading…
Reference in New Issue