diff options
author | Tiezhu Yang <yangtiezhu@loongson.cn> | 2020-03-17 21:09:46 +0800 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2020-03-19 13:17:14 +0100 |
commit | 1e07c876ab759954627c13876a5353a06711bf3e (patch) | |
tree | 365551339cead76efefdb48cc05ccdcd30855646 /arch/mips/loongson64/numa.c | |
parent | 863be3c3ab7396d606c26b9e50ac06543ec3bfd6 (diff) | |
download | linux-1e07c876ab759954627c13876a5353a06711bf3e.tar.gz linux-1e07c876ab759954627c13876a5353a06711bf3e.tar.bz2 linux-1e07c876ab759954627c13876a5353a06711bf3e.zip |
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 <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips/loongson64/numa.c')
-rw-r--r-- | arch/mips/loongson64/numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/loongson64/numa.c b/arch/mips/loongson64/numa.c index e5b40c5e3296..1ae072df4831 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 */ |