mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-01 03:51:31 +00:00
clk: clk-uclass: Assign clk->dev before call .of_xlate
In order to make clk->dev available in ops->of_xlate() to get the clock ID from the 'reg' property of the clock node, assign the clk->dev before calling ops->of_xlate(). Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> Acked-by: Stephen Warren <swarren@nvidia.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9e63c49a52
commit
3f56b13215
1 changed files with 3 additions and 0 deletions
|
@ -80,6 +80,9 @@ int clk_get_by_index(struct udevice *dev, int index, struct clk *clk)
|
||||||
__func__, ret);
|
__func__, ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
clk->dev = dev_clk;
|
||||||
|
|
||||||
ops = clk_dev_ops(dev_clk);
|
ops = clk_dev_ops(dev_clk);
|
||||||
|
|
||||||
if (ops->of_xlate)
|
if (ops->of_xlate)
|
||||||
|
|
Loading…
Add table
Reference in a new issue