MIPS: Loongson1B: Fix a typo

Fix a typo in the code.

Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com>
Patchwork: http://patchwork.linux-mips.org/patch/4434
Signed-off-by: John Crispin <blogic@openwrt.org>
This commit is contained in:
Kelvin Cheung 2012-10-23 05:17:03 +00:00 committed by John Crispin
parent 94fd4bdf4d
commit 69b1803ab7
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ void __init plat_time_init(void)
/* setup mips r4k timer */ /* setup mips r4k timer */
clk = clk_get(NULL, "cpu"); clk = clk_get(NULL, "cpu");
if (IS_ERR(clk)) if (IS_ERR(clk))
panic("unable to get dc clock, err=%ld", PTR_ERR(clk)); panic("unable to get cpu clock, err=%ld", PTR_ERR(clk));
mips_hpt_frequency = clk_get_rate(clk) / 2; mips_hpt_frequency = clk_get_rate(clk) / 2;
} }