mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
clk: Provide dummy of_clk_get_from_provider() for compile-testing
When CONFIG_ON=n, dummies are provided for of_clk_get() and
of_clk_get_by_name(), but not for of_clk_get_from_provider().
Provide a dummy for the latter, to improve the ability to do
compile-testing. This requires removing the existing dummy in the
Lantiq clock code.
Fixes: 766e6a4ec6
("clk: add DT clock binding support")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Thomas Langer <thomas.langer@intel.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
4e19dcd93b
commit
428c9de583
2 changed files with 4 additions and 5 deletions
|
@ -160,11 +160,6 @@ void clk_deactivate(struct clk *clk)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(clk_deactivate);
|
EXPORT_SYMBOL(clk_deactivate);
|
||||||
|
|
||||||
struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline u32 get_counter_resolution(void)
|
static inline u32 get_counter_resolution(void)
|
||||||
{
|
{
|
||||||
u32 res;
|
u32 res;
|
||||||
|
|
|
@ -539,6 +539,10 @@ static inline struct clk *of_clk_get_by_name(struct device_node *np,
|
||||||
{
|
{
|
||||||
return ERR_PTR(-ENOENT);
|
return ERR_PTR(-ENOENT);
|
||||||
}
|
}
|
||||||
|
static inline struct clk *of_clk_get_from_provider(struct of_phandle_args *clkspec)
|
||||||
|
{
|
||||||
|
return ERR_PTR(-ENOENT);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue