Commit 4bd01600 authored by Pavel Machek's avatar Pavel Machek Committed by Ingo Molnar

x86: clean up =0 initializations in arch/x86/kernel/tsc_32.c

Signed-off-by: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent f5a1b191
...@@ -221,9 +221,9 @@ EXPORT_SYMBOL(recalibrate_cpu_khz); ...@@ -221,9 +221,9 @@ EXPORT_SYMBOL(recalibrate_cpu_khz);
* if the CPU frequency is scaled, TSC-based delays will need a different * if the CPU frequency is scaled, TSC-based delays will need a different
* loops_per_jiffy value to function properly. * loops_per_jiffy value to function properly.
*/ */
static unsigned int ref_freq = 0; static unsigned int ref_freq;
static unsigned long loops_per_jiffy_ref = 0; static unsigned long loops_per_jiffy_ref;
static unsigned long cpu_khz_ref = 0; static unsigned long cpu_khz_ref;
static int static int
time_cpufreq_notifier(struct notifier_block *nb, unsigned long val, void *data) time_cpufreq_notifier(struct notifier_block *nb, unsigned long val, void *data)
...@@ -283,7 +283,7 @@ core_initcall(cpufreq_tsc); ...@@ -283,7 +283,7 @@ core_initcall(cpufreq_tsc);
/* clock source code */ /* clock source code */
static unsigned long current_tsc_khz = 0; static unsigned long current_tsc_khz;
static cycle_t read_tsc(void) static cycle_t read_tsc(void)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment