mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-14 19:26:58 +02:00
video: ti: am335x: Fix tilcdc clock names.
The commit 211b3d7263
("arm: dts: am3x: Non-functional changes sync
with v6.3-rc6") changed the tilcdc clock names.
Fix the tilcdc driver to use the new clock names.
Signed-off-by: Sukrut Bellary <sbellary@baylibre.com>
This commit is contained in:
parent
2f132281cc
commit
b565d7f201
@ -234,7 +234,7 @@ static int tilcdc_probe(struct udevice *dev)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
err = uclass_get_device_by_name(UCLASS_CLK, "lcd_gclk@534", &clk_dev);
|
||||
err = uclass_get_device_by_name(UCLASS_CLK, "clock-lcd-gclk@534", &clk_dev);
|
||||
if (err) {
|
||||
dev_err(dev, "failed to get lcd_gclk device\n");
|
||||
return err;
|
||||
@ -252,7 +252,7 @@ static int tilcdc_probe(struct udevice *dev)
|
||||
return rate;
|
||||
}
|
||||
|
||||
err = uclass_get_device_by_name(UCLASS_CLK, "dpll_disp_m2_ck@4a4",
|
||||
err = uclass_get_device_by_name(UCLASS_CLK, "clock-dpll-disp-m2@4a4",
|
||||
&clk_dev);
|
||||
if (err) {
|
||||
dev_err(dev, "failed to get dpll_disp_m2 clock device\n");
|
||||
|
Loading…
Reference in New Issue
Block a user