diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-19 08:29:24 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-19 08:29:24 -0400 |
commit | 83befb446664af32ce18f0e42e99a353e6622e58 (patch) | |
tree | 563a58575010c89767e6e8d21bf82443e5f44e52 /drivers/video | |
parent | abf0061eabf43f43a3889871e259c9633e7a42e3 (diff) | |
parent | 652982309d316b14aae5805d09239f89eb89f038 (diff) | |
download | u-boot-83befb446664af32ce18f0e42e99a353e6622e58.zip u-boot-83befb446664af32ce18f0e42e99a353e6622e58.tar.gz u-boot-83befb446664af32ce18f0e42e99a353e6622e58.tar.bz2 |
Merge tag 'ti-v2021.10-rc1' of https://source.denx.de/u-boot/custodians/u-boot-ti
- Enabled distro boot for all TI platforms.
- Cleanup for AM335x Guardian Board
- PRUSS rproc on AM65 platform.
- Add PMIC support for J7200
- Misc fixes for Nokia RX-51
# Conflicts:
# arch/arm/mach-omap2/am33xx/Kconfig
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/Makefile | 2 | ||||
-rw-r--r-- | drivers/video/hx8238d.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index 933f06e..1c534a6 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -15,7 +15,7 @@ obj-$(CONFIG_VIDEO_MIPI_DSI) += dsi-host-uclass.o obj-$(CONFIG_DM_VIDEO) += video-uclass.o vidconsole-uclass.o obj-$(CONFIG_DM_VIDEO) += video_bmp.o obj-$(CONFIG_PANEL) += panel-uclass.o -obj-$(CONFIG_PANEL_HX8238D) += hx8238d.o +obj-$(CONFIG_DM_PANEL_HX8238D) += hx8238d.o obj-$(CONFIG_SIMPLE_PANEL) += simple_panel.o endif diff --git a/drivers/video/hx8238d.c b/drivers/video/hx8238d.c index f7e7753..6ee97cb 100644 --- a/drivers/video/hx8238d.c +++ b/drivers/video/hx8238d.c @@ -191,7 +191,7 @@ U_BOOT_DRIVER(hx8238d) = { .name = "hx8238d", .id = UCLASS_PANEL, .of_match = hx8238d_ids, - .ofdata_to_platdata = hx8238d_ofdata_to_platdata, + .of_to_plat = hx8238d_ofdata_to_platdata, .probe = hx8238d_probe, - .priv_auto_alloc_size = sizeof(struct hx8238d_priv), + .priv_auto = sizeof(struct hx8238d_priv), }; |