Commit a8b62047 authored by John Crispin's avatar John Crispin Committed by Ralf Baechle

MIPS: ralink: add missing clk_set_rate() to clk.c

This function was missing causing make allmod to fail.
Signed-off-by: default avatarJohn Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/8005/Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 15d11120
......@@ -56,6 +56,12 @@ unsigned long clk_get_rate(struct clk *clk)
}
EXPORT_SYMBOL_GPL(clk_get_rate);
int clk_set_rate(struct clk *clk, unsigned long rate)
{
return -1;
}
EXPORT_SYMBOL_GPL(clk_set_rate);
void __init plat_time_init(void)
{
struct clk *clk;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment