diff options
| author | Svyatoslav Ryhel <[email protected]> | 2025-03-01 14:41:28 +0200 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2025-03-13 19:13:17 +0200 |
| commit | 4e539c8bddb994d90e46c4bd0e282b8a852ce6f2 (patch) | |
| tree | b8d8cc0d47a503699de4fa1d1e68adc2564b7e57 /drivers | |
| parent | 9be5770d85c1fbb89e30037524d17e55c9afa0ca (diff) | |
video: tegra20: dc: support binding child devices
Implement child binding helper within DC bind to support DC PWM backlight
feature.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/tegra20/tegra-dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/tegra20/tegra-dc.c b/drivers/video/tegra20/tegra-dc.c index 516a397872a..1f43153ff27 100644 --- a/drivers/video/tegra20/tegra-dc.c +++ b/drivers/video/tegra20/tegra-dc.c @@ -632,7 +632,7 @@ static int tegra_lcd_bind(struct udevice *dev) plat->size = LCD_MAX_WIDTH * LCD_MAX_HEIGHT * (1 << LCD_MAX_LOG2_BPP) / 8; - return 0; + return dm_scan_fdt_dev(dev); } static const struct tegra_dc_soc_info tegra20_dc_soc_info = { |
