diff mbox series

edac: cpc925: Remove the static variable initialisations to 0

Message ID 20220723092749.7829-1-wangborong@cdjrlc.com (mailing list archive)
State New, archived
Headers show
Series edac: cpc925: Remove the static variable initialisations to 0 | expand

Commit Message

Jason Wang July 23, 2022, 9:27 a.m. UTC
Initialise global and static variable to 0 is always unnecessary.
Remove the unnecessary initialisations.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
---
 drivers/edac/cpc925_edac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/edac/cpc925_edac.c b/drivers/edac/cpc925_edac.c
index 9797e6d60dde..e65ecb159bb3 100644
--- a/drivers/edac/cpc925_edac.c
+++ b/drivers/edac/cpc925_edac.c
@@ -582,7 +582,7 @@  static void cpc925_mc_check(struct mem_ctl_info *mci)
 static u32 cpc925_cpu_mask_disabled(void)
 {
 	struct device_node *cpunode;
-	static u32 mask = 0;
+	static u32 mask;
 
 	/* use cached value if available */
 	if (mask != 0)