aboutsummaryrefslogtreecommitdiff
path: root/board/ti/am43xx
diff options
context:
space:
mode:
authorDario Binacchi <dariobin@libero.it>2020-12-30 00:16:32 +0100
committerLokesh Vutla <lokeshvutla@ti.com>2021-01-12 10:59:04 +0530
commitba149a5b7b111b61b264fa68a7b6d829d35c631d (patch)
tree99190bd3f6c3d2448f3f59df7a5c17d98e37eec5 /board/ti/am43xx
parent260cbc9af283e02bd184d0becd3466222f2e1db1 (diff)
downloadu-boot-ba149a5b7b111b61b264fa68a7b6d829d35c631d.zip
u-boot-ba149a5b7b111b61b264fa68a7b6d829d35c631d.tar.gz
u-boot-ba149a5b7b111b61b264fa68a7b6d829d35c631d.tar.bz2
board: ti: am335x-ice: get CDCE913 clock device
With support for other clock drivers, the potentially supported CDCE913 device can no longer be probed without specifying its DT node name. Signed-off-by: Dario Binacchi <dariobin@libero.it>
Diffstat (limited to 'board/ti/am43xx')
-rw-r--r--board/ti/am43xx/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c
index de49590..62ed37c 100644
--- a/board/ti/am43xx/board.c
+++ b/board/ti/am43xx/board.c
@@ -744,7 +744,7 @@ int board_late_init(void)
#endif
/* Just probe the potentially supported cdce913 device */
- uclass_get_device(UCLASS_CLK, 0, &dev);
+ uclass_get_device_by_name(UCLASS_CLK, "cdce913@65", &dev);
return 0;
}