16 lines
328 B
Diff
16 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;
|