Commit cbe263b6 authored by Jason Wang's avatar Jason Wang Committed by Helge Deller

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: default avatarJason Wang <wangborong@cdjrlc.com>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent b9e28d3c
...@@ -722,7 +722,7 @@ static unsigned long space_id[SID_ARRAY_SIZE] = { 1 }; /* disallow space 0 */ ...@@ -722,7 +722,7 @@ static unsigned long space_id[SID_ARRAY_SIZE] = { 1 }; /* disallow space 0 */
static unsigned long dirty_space_id[SID_ARRAY_SIZE]; static unsigned long dirty_space_id[SID_ARRAY_SIZE];
static unsigned long space_id_index; static unsigned long space_id_index;
static unsigned long free_space_ids = NR_SPACE_IDS - 1; static unsigned long free_space_ids = NR_SPACE_IDS - 1;
static unsigned long dirty_space_ids = 0; static unsigned long dirty_space_ids;
static DEFINE_SPINLOCK(sid_lock); static DEFINE_SPINLOCK(sid_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment