driver: clk: tegra: init basic clocks on probe

In case DM drivers probe earlier than board clock setup is done
init of basic clocks should be done in CAR driver probe as well.
Add it to avoid possible clock related problems.

Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
(cherry picked from commit b46bd4f874)
This commit is contained in:
Svyatoslav Ryhel
2024-12-13 16:53:19 +02:00
committed by Simon Glass
parent bf14b25130
commit b21aee117b

View File

@@ -112,6 +112,9 @@ static int tegra_car_clk_probe(struct udevice *dev)
{
debug("%s(dev=%p)\n", __func__, dev);
clock_init();
clock_verify();
return 0;
}