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>
}
/* 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;
}
#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;
}