aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorValdis Kletnieks <valdis.kletnieks@vt.edu>2019-03-12 04:38:35 -0400
committerThomas Gleixner <tglx@linutronix.de>2019-03-22 13:38:26 +0100
commite8750053d64a3317cbc15f8341f0f11ca751bfeb (patch)
treea83b1bee8766a3de03e578648a3f6cb15de2b2d6 /kernel
parentLinux 5.1-rc1 (diff)
downloadlinux-dev-e8750053d64a3317cbc15f8341f0f11ca751bfeb.tar.xz
linux-dev-e8750053d64a3317cbc15f8341f0f11ca751bfeb.zip
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 <valdis.kletnieks@vt.edu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/32342.1552379915@turing-police
Diffstat (limited to 'kernel')
-rw-r--r--kernel/time/jiffies.c2
1 files changed, 1 insertions, 1 deletions
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)
{