diff options
author | Tom Rini <trini@konsulko.com> | 2019-10-12 10:09:13 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-10-12 10:09:13 -0400 |
commit | 36317705cb5ab43db25fede2446d2352de527630 (patch) | |
tree | e8ff78640a9b892bd1026d4b1bead169f8c95fed /board/ti/am335x/board.c | |
parent | 44fb0d6c9f5147a41c710032869e5e01b3c9e310 (diff) | |
parent | 5c6e497eaaf2c76344f82e823c2a0aad3cc26167 (diff) |
Merge branch '2019-10-11-ti-imports'
- Various improvements to dra7xx, keystone 3, am65x SoCs
- Platform updates
- remoteproc improvements
Diffstat (limited to 'board/ti/am335x/board.c')
-rw-r--r-- | board/ti/am335x/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c index 7eaa6cd96d..499c872227 100644 --- a/board/ti/am335x/board.c +++ b/board/ti/am335x/board.c @@ -791,6 +791,7 @@ int board_init(void) #ifdef CONFIG_BOARD_LATE_INIT int board_late_init(void) { + struct udevice *dev; #if !defined(CONFIG_SPL_BUILD) uint8_t mac_addr[6]; uint32_t mac_hi, mac_lo; @@ -871,6 +872,9 @@ int board_late_init(void) env_set("serial#", board_serial); } + /* Just probe the potentially supported cdce913 device */ + uclass_get_device(UCLASS_CLK, 0, &dev); + return 0; } #endif |