1
0
Fork 0

fs/jfs/jfs_logmgr.c: remove NULL assignment on static

Static values are automatically initialized to NULL

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
hifive-unleashed-5.1
Fabian Frederick 2014-05-22 10:42:23 +10:00 committed by Dave Kleikamp
parent e31da3f98d
commit bc4e6b28ac
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ do { \
* Global list of active external journals
*/
static LIST_HEAD(jfs_external_logs);
static struct jfs_log *dummy_log = NULL;
static struct jfs_log *dummy_log;
static DEFINE_MUTEX(jfs_log_mutex);
/*