mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 14:17:43 +00:00
net: ethernet: ti: cpts: use devm_get_clk_from_child
Use devm_get_clk_from_child() instead of devm_clk_get() and this way allow to group CPTS DT properties in sub-node for better code readability and maintenance. Roll-back to devm_clk_get() if devm_get_clk_from_child() fails for backward compatibility. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Acked-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
12775af505
commit
8a6389a515
1 changed files with 7 additions and 2 deletions
|
@ -572,9 +572,14 @@ struct cpts *cpts_create(struct device *dev, void __iomem *regs,
|
|||
if (ret)
|
||||
return ERR_PTR(ret);
|
||||
|
||||
cpts->refclk = devm_clk_get(dev, "cpts");
|
||||
cpts->refclk = devm_get_clk_from_child(dev, node, "cpts");
|
||||
if (IS_ERR(cpts->refclk))
|
||||
/* try get clk from dev node for compatibility */
|
||||
cpts->refclk = devm_clk_get(dev, "cpts");
|
||||
|
||||
if (IS_ERR(cpts->refclk)) {
|
||||
dev_err(dev, "Failed to get cpts refclk\n");
|
||||
dev_err(dev, "Failed to get cpts refclk %ld\n",
|
||||
PTR_ERR(cpts->refclk));
|
||||
return ERR_CAST(cpts->refclk);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue