From: H Hartley Sweeten Date: Tue, 11 Jan 2011 23:59:38 +0000 (-0600) Subject: timekeeping: Make local variables static X-Git-Tag: firefly_0821_release~7613^2~2683^4 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=afa14e7c553ebe45844d76208f66017a43abd0e2;hp=5fdade95f26372154459347dfb9f60721d22cfc7;p=firefly-linux-kernel-4.4.55.git timekeeping: Make local variables static Signed-off-by: H Hartley Sweeten Cc: John Stultz LKML-Reference: <0D753D10438DA54287A00B027084269764CE0E54B7@AUSP01VMBX24.collaborationhost.net> Signed-off-by: Thomas Gleixner --- diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 5bb86da82003..eef7452bd8a9 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -49,7 +49,7 @@ struct timekeeper { u32 mult; }; -struct timekeeper timekeeper; +static struct timekeeper timekeeper; /** * timekeeper_setup_internals - Set up internals to use clocksource clock. @@ -164,7 +164,7 @@ static struct timespec total_sleep_time; /* * The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */ -struct timespec raw_time; +static struct timespec raw_time; /* flag for if timekeeping is suspended */ int __read_mostly timekeeping_suspended;