9c24227090
NAND support is missing Signed-off-by: John Crispin <john@phrozen.org>
15 lines
328 B
Diff
15 lines
328 B
Diff
--- a/arch/mips/ralink/clk.c
|
|
+++ b/arch/mips/ralink/clk.c
|
|
@@ -62,6 +62,12 @@ int clk_set_rate(struct clk *clk, unsign
|
|
}
|
|
EXPORT_SYMBOL_GPL(clk_set_rate);
|
|
|
|
+long clk_round_rate(struct clk *clk, unsigned long rate)
|
|
+{
|
|
+ return -1;
|
|
+}
|
|
+EXPORT_SYMBOL_GPL(clk_round_rate);
|
|
+
|
|
void __init plat_time_init(void)
|
|
{
|
|
struct clk *clk;
|