diff options
author | Sukrut Bellary <sbellary@baylibre.com> | 2025-03-11 23:57:09 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-03-31 17:04:20 -0600 |
commit | b565d7f20193113e01628ef8033103694be4dd46 (patch) | |
tree | 08cfec31d7e2e5bd421cdfae0f0b4836b79f3fd1 | |
parent | 2f132281cc7899b74ac6de41500e1c44c8180c53 (diff) |
video: ti: am335x: Fix tilcdc clock names.
The commit 211b3d726378 ("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>
-rw-r--r-- | drivers/video/ti/tilcdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/ti/tilcdc.c b/drivers/video/ti/tilcdc.c index 493e2f18cd2..340c79299ba 100644 --- a/drivers/video/ti/tilcdc.c +++ b/drivers/video/ti/tilcdc.c @@ -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"); |