From: Tiezhu Yang Date: Tue, 17 Mar 2020 13:09:46 +0000 (+0800) Subject: MIPS: Loongson: Do not initialise statics to 0 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1e07c876ab759954627c13876a5353a06711bf3e;p=linux.git MIPS: Loongson: Do not initialise statics to 0 Fix the following checkpatch error: ERROR: do not initialise statics to 0 #125: FILE: loongson64/numa.c:125: + static unsigned long num_physpages = 0; Signed-off-by: Tiezhu Yang Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/loongson64/numa.c b/arch/mips/loongson64/numa.c index e5b40c5e3296e..1ae072df48314 100644 --- a/arch/mips/loongson64/numa.c +++ b/arch/mips/loongson64/numa.c @@ -122,7 +122,7 @@ static unsigned long nid_to_addroffset(unsigned int nid) static void __init szmem(unsigned int node) { u32 i, mem_type; - static unsigned long num_physpages = 0; + static unsigned long num_physpages; u64 node_id, node_psize, start_pfn, end_pfn, mem_start, mem_size; /* Parse memory information and activate */