ralink: refresh patches
[openwrt/staging/wigyori.git] / target / linux / ramips / patches-3.10 / 0105-MIPS-ralink-add-missing-clk_set_rate-to-clk.c.patch
1 From 6f72aea69951479b7daad1d38b506ede4f8a1676 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Sun, 16 Mar 2014 04:38:07 +0000
4 Subject: [PATCH 105/133] MIPS: ralink: add missing clk_set_rate() to clk.c
5
6 Signed-off-by: John Crispin <blogic@openwrt.org>
7 ---
8 arch/mips/ralink/clk.c | 6 ++++++
9 1 file changed, 6 insertions(+)
10
11 --- a/arch/mips/ralink/clk.c
12 +++ b/arch/mips/ralink/clk.c
13 @@ -56,6 +56,12 @@ unsigned long clk_get_rate(struct clk *c
14 }
15 EXPORT_SYMBOL_GPL(clk_get_rate);
16
17 +int clk_set_rate(struct clk *clk, unsigned long rate)
18 +{
19 + return -1;
20 +}
21 +EXPORT_SYMBOL_GPL(clk_set_rate);
22 +
23 void __init plat_time_init(void)
24 {
25 struct clk *clk;