From: Felix Fietkau Date: Fri, 1 Jan 2016 14:33:09 +0000 (+0000) Subject: ramips: add missing clk_round_rate function to fix buildbot errors X-Git-Tag: reboot~1059 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f3bbb73a2062972ceb9e211c39764bec2cd4cb77;p=openwrt%2Fstaging%2Fblogic.git ramips: add missing clk_round_rate function to fix buildbot errors Signed-off-by: Felix Fietkau SVN-Revision: 48024 --- diff --git a/target/linux/ramips/patches-4.3/0064-add_clk_round_rate.patch b/target/linux/ramips/patches-4.3/0064-add_clk_round_rate.patch new file mode 100644 index 000000000000..86d98b087c01 --- /dev/null +++ b/target/linux/ramips/patches-4.3/0064-add_clk_round_rate.patch @@ -0,0 +1,15 @@ +--- 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;