[MIPS] Fix the installation condition of MIPS clocksource

Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Yoichi Yuasa 2008-03-12 23:50:02 +09:00 committed by Ralf Baechle
parent 82933342c3
commit 447cdf2628

View File

@ -157,6 +157,6 @@ void __init time_init(void)
{ {
plat_time_init(); plat_time_init();
if (mips_clockevent_init() || !cpu_has_mfc0_count_bug()) if (!mips_clockevent_init() || !cpu_has_mfc0_count_bug())
init_mips_clocksource(); init_mips_clocksource();
} }