Skip to content

Commit

Permalink
clk: fix compile for OF && !COMMON_CLK
Browse files Browse the repository at this point in the history
With commit 766e6a4 (clk: add DT clock binding support),
compiling with OF && !COMMON_CLK is broken.

Reported-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Reported-by: Prashant Gaikwad <pgaikwad@nvidia.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Rob Herring authored and Mike Turquette committed Jul 19, 2012
1 parent 9f1612d commit 137f8a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/clk/clkdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
static LIST_HEAD(clocks);
static DEFINE_MUTEX(clocks_mutex);

#ifdef CONFIG_OF
#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
struct clk *of_clk_get(struct device_node *np, int index)
{
struct of_phandle_args clkspec;
Expand Down
2 changes: 1 addition & 1 deletion include/linux/clk.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ int clk_add_alias(const char *alias, const char *alias_dev_name, char *id,
struct device_node;
struct of_phandle_args;

#ifdef CONFIG_OF
#if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK)
struct clk *of_clk_get(struct device_node *np, int index);
struct clk *of_clk_get_by_name(struct device_node *np, const char *name);
struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec);
Expand Down

0 comments on commit 137f8a7

Please sign in to comment.