summaryrefslogtreecommitdiffstats
path: root/drivers/clk/ti/apll.c
diff options
context:
space:
mode:
authorDinh Nguyen <dinguyen@opensource.altera.com>2015-07-06 22:59:06 -0500
committerStephen Boyd <sboyd@codeaurora.org>2015-07-28 11:59:07 -0700
commit9da9e761273702b3afd6e3538c23ece95693e586 (patch)
treedf789e1a1803f80c050746bc5b52175a9e7a03cd /drivers/clk/ti/apll.c
parent8a53fb2bceea00081c4a6af7b477bea8ec00b74b (diff)
downloadop-kernel-dev-9da9e761273702b3afd6e3538c23ece95693e586.zip
op-kernel-dev-9da9e761273702b3afd6e3538c23ece95693e586.tar.gz
clk: ti: make use of of_clk_parent_fill helper function
Use of_clk_parent_fill to fill in the parent clock names' array. Signed-off-by: Dinh Nguyen <dinguyen@opensource.altera.com> Cc: Tero Kristo <t-kristo@ti.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/ti/apll.c')
-rw-r--r--drivers/clk/ti/apll.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clk/ti/apll.c b/drivers/clk/ti/apll.c
index 594b759..de5a02d 100644
--- a/drivers/clk/ti/apll.c
+++ b/drivers/clk/ti/apll.c
@@ -172,7 +172,6 @@ static void __init of_dra7_apll_setup(struct device_node *node)
struct clk_hw_omap *clk_hw = NULL;
struct clk_init_data *init = NULL;
const char **parent_names = NULL;
- int i;
ad = kzalloc(sizeof(*ad), GFP_KERNEL);
clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL);
@@ -197,8 +196,7 @@ static void __init of_dra7_apll_setup(struct device_node *node)
if (!parent_names)
goto cleanup;
- for (i = 0; i < init->num_parents; i++)
- parent_names[i] = of_clk_get_parent_name(node, i);
+ of_clk_parent_fill(node, parent_names, init->num_parents);
init->parent_names = parent_names;
OpenPOWER on IntegriCloud