ARM: msm: Remove custom clk_set_{max,min}_rate() API
There are no users of this API anymore so let's just remove it. If a need arises in the future we can extend the common clock API to handle it. Acked-by: Saravana Kannan <skannan@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org>
This commit is contained in:

committed by
David Brown

parent
85a7df1f85
commit
2f8b6fe4a9
@@ -97,18 +97,6 @@ long clk_round_rate(struct clk *clk, unsigned long rate)
|
||||
}
|
||||
EXPORT_SYMBOL(clk_round_rate);
|
||||
|
||||
int clk_set_min_rate(struct clk *clk, unsigned long rate)
|
||||
{
|
||||
return clk->ops->set_min_rate(clk->id, rate);
|
||||
}
|
||||
EXPORT_SYMBOL(clk_set_min_rate);
|
||||
|
||||
int clk_set_max_rate(struct clk *clk, unsigned long rate)
|
||||
{
|
||||
return clk->ops->set_max_rate(clk->id, rate);
|
||||
}
|
||||
EXPORT_SYMBOL(clk_set_max_rate);
|
||||
|
||||
int clk_set_parent(struct clk *clk, struct clk *parent)
|
||||
{
|
||||
return -ENOSYS;
|
||||
|
Reference in New Issue
Block a user