From: Kelvin Cheung Date: Tue, 23 Oct 2012 05:17:03 +0000 (+0000) Subject: MIPS: Loongson1B: Fix a typo X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=69b1803ab79ebda75df2bfcb1c2a54d6c3de5325;p=linux-beck.git MIPS: Loongson1B: Fix a typo Fix a typo in the code. Signed-off-by: Kelvin Cheung Patchwork: http://patchwork.linux-mips.org/patch/4434 Signed-off-by: John Crispin --- diff --git a/arch/mips/loongson1/common/clock.c b/arch/mips/loongson1/common/clock.c index 7db0a6aab20b..07133defa148 100644 --- a/arch/mips/loongson1/common/clock.c +++ b/arch/mips/loongson1/common/clock.c @@ -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; }