summaryrefslogtreecommitdiffstats
path: root/drivers/clk/st/clkgen-mux.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2015-05-29 11:25:46 +0200
committerStephen Boyd <sboyd@codeaurora.org>2015-06-04 13:51:34 -0700
commit0a65239c280bb0d56d8d84c4a9cc78bc68144925 (patch)
tree14a9cd4a85d39911dbbaba93f10b16056561c9af /drivers/clk/st/clkgen-mux.c
parent51a43be9fa9016e02ef9c4214470c919223d138c (diff)
downloadlinux-0a65239c280bb0d56d8d84c4a9cc78bc68144925.tar.gz
linux-0a65239c280bb0d56d8d84c4a9cc78bc68144925.tar.bz2
linux-0a65239c280bb0d56d8d84c4a9cc78bc68144925.zip
clk: st: Use of_clk_get_parent_count() instead of open coding
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/st/clkgen-mux.c')
-rw-r--r--drivers/clk/st/clkgen-mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c
index 80aa77dbf660..4fbe6e099587 100644
--- a/drivers/clk/st/clkgen-mux.c
+++ b/drivers/clk/st/clkgen-mux.c
@@ -26,7 +26,7 @@ static const char ** __init clkgen_mux_get_parents(struct device_node *np,
const char **parents;
int nparents, i;
- nparents = of_count_phandle_with_args(np, "clocks", "#clock-cells");
+ nparents = of_clk_get_parent_count(np);
if (WARN_ON(nparents <= 0))
return ERR_PTR(-EINVAL);