Skip to content

Commit cbe263b

Browse files
Jason Wanghdeller
authored andcommitted
parisc: Drop zero variable initialisations in mm/init.c
Initialise global and static variable to 0 is always unnecessary. Remove the unnecessary initialisations. Signed-off-by: Jason Wang <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent b9e28d3 commit cbe263b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/parisc/mm/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ static unsigned long space_id[SID_ARRAY_SIZE] = { 1 }; /* disallow space 0 */
722722
static unsigned long dirty_space_id[SID_ARRAY_SIZE];
723723
static unsigned long space_id_index;
724724
static unsigned long free_space_ids = NR_SPACE_IDS - 1;
725-
static unsigned long dirty_space_ids = 0;
725+
static unsigned long dirty_space_ids;
726726

727727
static DEFINE_SPINLOCK(sid_lock);
728728

0 commit comments

Comments
 (0)