projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94fd4bd
)
MIPS: Loongson1B: Fix a typo
author
Kelvin Cheung
<keguang.zhang@gmail.com>
Tue, 23 Oct 2012 05:17:03 +0000
(
05:17
+0000)
committer
John Crispin
<blogic@openwrt.org>
Fri, 9 Nov 2012 10:37:20 +0000
(11:37 +0100)
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>
arch/mips/loongson1/common/clock.c
patch
|
blob
|
history
diff --git
a/arch/mips/loongson1/common/clock.c
b/arch/mips/loongson1/common/clock.c
index 7db0a6aab20bea445b32a8edb0b4df89b955e3bc..07133defa148dbbe2da9216a66fae3b09dabaefd 100644
(file)
--- 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;
}