From: Dario Binacchi Date: Tue, 29 Dec 2020 23:16:32 +0000 (+0100) Subject: board: ti: am335x-ice: get CDCE913 clock device X-Git-Tag: v2021.04-rc1~40^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba149a5b7b111b61b264fa68a7b6d829d35c631d;p=pandora-u-boot.git 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 --- diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 40d2e0238fd..3cc0e4b91c0 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -879,7 +879,7 @@ int board_late_init(void) } /* 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; } diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index de495900315..62ed37cb488 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; }