[PATCH] kernel/time/jiffies.c - make variable static

From: Valdis KlÄtnieks
Date: Tue Mar 12 2019 - 04:38:46 EST


sparse complains:

CHECK kernel/time/jiffies.c
kernel/time/jiffies.c:92:20: warning: symbol 'refined_jiffies' was not declared. Should it be static?

__clocksource_register() is passed a pointer, and nothing else refers to it. Make it static.

Signed-off-by: Valdis Kletnieks <valdis.kletnieks@xxxxxx>
---
diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c
index dc1b6f1929f9..ac9c03dd6c7d 100644
--- a/kernel/time/jiffies.c
+++ b/kernel/time/jiffies.c
@@ -89,7 +89,7 @@ struct clocksource * __init __weak clocksource_default_clock(void)
return &clocksource_jiffies;
}

-struct clocksource refined_jiffies;
+static struct clocksource refined_jiffies;

int register_refined_jiffies(long cycles_per_second)
{