mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 21:54:37 +08:00
dm: timer: Skip device that does not have a valid ofnode in pre_probe()
It is possible that a timer device has a null ofnode, hence there is no need to further parse DT for the clock rate. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e3665ba9d7
commit
7efb4a6e09
@ -48,6 +48,10 @@ static int timer_pre_probe(struct udevice *dev)
|
||||
int err;
|
||||
ulong ret;
|
||||
|
||||
/* It is possible that a timer device has a null ofnode */
|
||||
if (!dev_of_valid(dev))
|
||||
return 0;
|
||||
|
||||
err = clk_get_by_index(dev, 0, &timer_clk);
|
||||
if (!err) {
|
||||
ret = clk_get_rate(&timer_clk);
|
||||
|
Loading…
Reference in New Issue
Block a user