From: Valdis Kletnieks Date: Tue, 12 Mar 2019 08:38:35 +0000 (-0400) Subject: time/jiffies: Make refined_jiffies static X-Git-Tag: v5.15~6576^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8750053d64a3317cbc15f8341f0f11ca751bfeb;p=platform%2Fkernel%2Flinux-starfive.git time/jiffies: Make refined_jiffies static sparse complains: CHECK kernel/time/jiffies.c kernel/time/jiffies.c:92:20: warning: symbol 'refined_jiffies' was not declared. Should it be static? Its only used in file scope. Make it static. Signed-off-by: Valdis Kletnieks Signed-off-by: Thomas Gleixner Link: https://lkml.kernel.org/r/32342.1552379915@turing-police --- diff --git a/kernel/time/jiffies.c b/kernel/time/jiffies.c index dc1b6f1..ac9c03d 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) {