From: Xin Gao Date: Wed, 20 Jul 2022 19:39:41 +0000 (+0800) Subject: parisc: Do not initialise statics to 0 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b9e28d3c249211ec4d2de646975c32f22e5c201d;p=linux.git parisc: Do not initialise statics to 0 Signed-off-by: Xin Gao Signed-off-by: Helge Deller --- diff --git a/arch/parisc/kernel/pci-dma.c b/arch/parisc/kernel/pci-dma.c index 160996f2198ef..ba87f791323be 100644 --- a/arch/parisc/kernel/pci-dma.c +++ b/arch/parisc/kernel/pci-dma.c @@ -36,8 +36,8 @@ #include /* for purge_tlb_*() macros */ static struct proc_dir_entry * proc_gsc_root __read_mostly = NULL; -static unsigned long pcxl_used_bytes __read_mostly = 0; -static unsigned long pcxl_used_pages __read_mostly = 0; +static unsigned long pcxl_used_bytes __read_mostly; +static unsigned long pcxl_used_pages __read_mostly; extern unsigned long pcxl_dma_start; /* Start of pcxl dma mapping area */ static DEFINE_SPINLOCK(pcxl_res_lock);