diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-05-29 12:25:45 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-06-04 23:51:23 +0300 |
commit | 51a43be9fa9016e02ef9c4214470c919223d138c (patch) | |
tree | c29f16efd9e646b917e59a900e55c2980489173b /drivers/clk/at91/clk-main.c | |
parent | 17bfa3f7b3cd07e92b41ce7b5bea2dd8c8e2a8c3 (diff) | |
download | linux-51a43be9fa9016e02ef9c4214470c919223d138c.tar.xz |
clk: at91: Use of_clk_get_parent_count() instead of open coding
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/at91/clk-main.c')
-rw-r--r-- | drivers/clk/at91/clk-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/at91/clk-main.c b/drivers/clk/at91/clk-main.c index 59fa3cc96c9e..c2400456a044 100644 --- a/drivers/clk/at91/clk-main.c +++ b/drivers/clk/at91/clk-main.c @@ -614,7 +614,7 @@ void __init of_at91sam9x5_clk_main_setup(struct device_node *np, const char *name = np->name; int i; - num_parents = of_count_phandle_with_args(np, "clocks", "#clock-cells"); + num_parents = of_clk_get_parent_count(np); if (num_parents <= 0 || num_parents > 2) return; |