diff options
author | john stultz <johnstul@us.ibm.com> | 2010-01-29 02:02:41 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-01-29 12:15:19 +0300 |
commit | 1f5b8f8a2031ae9507eb67743cad4d424739bfff (patch) | |
tree | da8cad7941ea5c9a953f65cabc64a5c4bc57fde4 /kernel/time | |
parent | 64a028a6de08545a2c94f302bc7694bf48aee5b5 (diff) | |
download | linux-1f5b8f8a2031ae9507eb67743cad4d424739bfff.tar.xz |
ntp: Make time_esterror and time_maxerror static
Make time_esterror and time_maxerror static as no one uses them
outside of ntp.c
Signed-off-by: John Stultz <johnstul@us.ibm.com>
Cc: richard@rsk.demon.co.uk
LKML-Reference: <1264719761.3437.47.camel@localhost.localdomain>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time')
-rw-r--r-- | kernel/time/ntp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/time/ntp.c b/kernel/time/ntp.c index 4800f933910e..74b1b37b1595 100644 --- a/kernel/time/ntp.c +++ b/kernel/time/ntp.c @@ -58,10 +58,10 @@ static s64 time_offset; static long time_constant = 2; /* maximum error (usecs): */ -long time_maxerror = NTP_PHASE_LIMIT; +static long time_maxerror = NTP_PHASE_LIMIT; /* estimated error (usecs): */ -long time_esterror = NTP_PHASE_LIMIT; +static long time_esterror = NTP_PHASE_LIMIT; /* frequency offset (scaled nsecs/secs): */ static s64 time_freq; |