9
0
Fork 0

ARM: Nomadik: Implement a clk_set_rate stub

Some drivers need it, so give it to them.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-11-27 16:06:42 +01:00
parent 21930e538f
commit daed803a92
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@ unsigned long clk_get_rate(struct clk *clk)
}
EXPORT_SYMBOL(clk_get_rate);
int clk_set_rate(struct clk *clk, unsigned long rate)
{
return 0;
}
EXPORT_SYMBOL(clk_set_rate);
/* enable and disable do nothing */
int clk_enable(struct clk *clk)
{