Skip to content
Snippets Groups Projects
Commit e81e8af9 authored by Gireesh Hiremath's avatar Gireesh Hiremath Committed by Lokesh Vutla
Browse files

drivers: video: hx8238 fix build bug

parent 321c5b7c
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ obj-$(CONFIG_VIDEO_MIPI_DSI) += dsi-host-uclass.o ...@@ -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-uclass.o vidconsole-uclass.o
obj-$(CONFIG_DM_VIDEO) += video_bmp.o obj-$(CONFIG_DM_VIDEO) += video_bmp.o
obj-$(CONFIG_PANEL) += panel-uclass.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 obj-$(CONFIG_SIMPLE_PANEL) += simple_panel.o
endif endif
......
...@@ -191,7 +191,7 @@ U_BOOT_DRIVER(hx8238d) = { ...@@ -191,7 +191,7 @@ U_BOOT_DRIVER(hx8238d) = {
.name = "hx8238d", .name = "hx8238d",
.id = UCLASS_PANEL, .id = UCLASS_PANEL,
.of_match = hx8238d_ids, .of_match = hx8238d_ids,
.ofdata_to_platdata = hx8238d_ofdata_to_platdata, .of_to_plat = hx8238d_ofdata_to_platdata,
.probe = hx8238d_probe, .probe = hx8238d_probe,
.priv_auto_alloc_size = sizeof(struct hx8238d_priv), .priv_auto = sizeof(struct hx8238d_priv),
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment