mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 12:36:51 +07:00
8166255704
Select DRM_PANEL, since the MXSFB driver depends on it. Otherwise, we get the following error when compiling: drivers/built-in.o: In function `mxsfb_probe': core.c:(.text+0x9ce9c): undefined reference to `drm_panel_attach' core.c:(.text+0x9cff0): undefined reference to `drm_panel_detach' drivers/built-in.o: In function `mxsfb_panel_connector_destroy': core.c:(.text+0x9d614): undefined reference to `drm_panel_detach' drivers/built-in.o: In function `mxsfb_create_output': core.c:(.text+0x9d68c): undefined reference to `of_drm_find_panel' make: *** [Makefile:962: vmlinux] Error 1 Signed-off-by: Marek Vasut <marex@denx.de> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: Dave Airlie <airlied@redhat.com> Reported-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Dave Airlie <airlied@redhat.com>
20 lines
458 B
Plaintext
20 lines
458 B
Plaintext
config DRM_MXS
|
|
bool
|
|
help
|
|
Choose this option to select drivers for MXS FB devices
|
|
|
|
config DRM_MXSFB
|
|
tristate "i.MX23/i.MX28/i.MX6SX MXSFB LCD controller"
|
|
depends on DRM && OF
|
|
depends on COMMON_CLK
|
|
select DRM_MXS
|
|
select DRM_KMS_HELPER
|
|
select DRM_KMS_FB_HELPER
|
|
select DRM_KMS_CMA_HELPER
|
|
select DRM_PANEL
|
|
help
|
|
Choose this option if you have an i.MX23/i.MX28/i.MX6SX MXSFB
|
|
LCD controller.
|
|
|
|
If M is selected the module will be called mxsfb.
|