Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173538
b: refs/heads/master
c: 96c6124
h: refs/heads/master
v: v3
  • Loading branch information
Steven King authored and Greg Ungerer committed Dec 4, 2009
1 parent e88b611 commit 9a0dafb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 53749f735a5b79156b56e75ee379be9e299b5e4b
refs/heads/master: 96c612427edab65dddd88ad61d732501cc5f128d
7 changes: 6 additions & 1 deletion trunk/arch/m68knommu/platform/coldfire/clk.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/***************************************************************************/

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/clk.h>
#include <asm/coldfire.h>

Expand All @@ -18,23 +19,27 @@ struct clk *clk_get(struct device *dev, const char *id)
{
return NULL;
}
EXPORT_SYMBOL(clk_get);

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

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

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

unsigned long clk_get_rate(struct clk *clk)
{
return MCF_CLK;
}

EXPORT_SYMBOL(clk_get_rate);
/***************************************************************************/

0 comments on commit 9a0dafb

Please sign in to comment.