Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107518
b: refs/heads/master
c: 79a13b2
h: refs/heads/master
v: v3
  • Loading branch information
Paulius Zaleckas authored and Sascha Hauer committed Jul 28, 2008
1 parent c032641 commit 44059c7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d7098e31404a25f70f82aa7513e7f5893763576b
refs/heads/master: 79a13b29782e252d4f4e8f6111b978519b876cf7
5 changes: 5 additions & 0 deletions trunk/arch/arm/mach-imx/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,24 +172,29 @@ struct clk *clk_get(struct device *dev, const char *id)

return clk;
}
EXPORT_SYMBOL(clk_get);

void clk_put(struct clk *clk)
{
}
EXPORT_SYMBOL(clk_put);

int clk_enable(struct clk *clk)
{
return 0;
}
EXPORT_SYMBOL(clk_enable);

void clk_disable(struct clk *clk)
{
}
EXPORT_SYMBOL(clk_disable);

unsigned long clk_get_rate(struct clk *clk)
{
return clk->get_rate();
}
EXPORT_SYMBOL(clk_get_rate);

int imx_clocks_init(void)
{
Expand Down

0 comments on commit 44059c7

Please sign in to comment.