Skip to content

Commit

Permalink
MIPS: Loongson1B: Fix a typo
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kelvin Cheung authored and John Crispin committed Nov 9, 2012
1 parent 94fd4bd commit 69b1803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/loongson1/common/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void __init plat_time_init(void)
/* setup mips r4k timer */
clk = clk_get(NULL, "cpu");
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;
}

0 comments on commit 69b1803

Please sign in to comment.