Searched defs:est_freq (Results 1 - 4 of 4) sorted by relevance

/arch/mips/rb532/
H A Dtime.c51 unsigned int est_freq; local
60 est_freq = 2 * r4k_offset * HZ;
61 est_freq += 5000; /* round */
62 est_freq -= est_freq % 10000;
63 printk(KERN_INFO "CPU frequency %d.%02d MHz\n", est_freq / 1000000,
64 (est_freq % 1000000) * 100 / 1000000);
/arch/mips/alchemy/common/
H A Dsetup.c43 unsigned long est_freq; local
46 est_freq = au1xxx_calc_clock();
47 est_freq += 5000; /* round */
48 est_freq -= est_freq % 10000;
50 est_freq / 1000000, ((est_freq % 1000000) * 100) / 1000000);
53 preset_lpj = (est_freq >> 1) / HZ;
/arch/mips/mipssim/
H A Dsim_time.c106 unsigned int est_freq; local
111 est_freq = estimate_cpu_frequency();
113 printk(KERN_INFO "CPU frequency %d.%02d MHz\n", est_freq / 1000000,
114 (est_freq % 1000000) * 100 / 1000000);
116 cpu_khz = est_freq / 1000;
/arch/mips/mti-malta/
H A Dmalta-time.c147 unsigned int est_freq; local
152 est_freq = estimate_cpu_frequency();
154 printk("CPU frequency %d.%02d MHz\n", est_freq/1000000,
155 (est_freq%1000000)*100/1000000);
157 cpu_khz = est_freq / 1000;

Completed in 106 milliseconds