mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
e7cc23de3e
When DRM_PANEL is disabled, we get a link error for pl111:
drivers/gpu/built-in.o: In function `pl111_connector_destroy':
pl111_connector.c:(.text+0x3487e6): undefined reference to `drm_panel_detach'
For some reason this only appears in the latest linux-next
although the driver appears to have used the symbol for a few
weeks already. The solution however is simple enough, we just
need to add a 'select' statement.
Fixes: bed41005e6
("drm/pl111: Initial drm/kms driver for pl111")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170530092224.1204037-1-arnd@arndb.de
15 lines
428 B
Plaintext
15 lines
428 B
Plaintext
config DRM_PL111
|
|
tristate "DRM Support for PL111 CLCD Controller"
|
|
depends on DRM
|
|
depends on ARM || ARM64 || COMPILE_TEST
|
|
depends on COMMON_CLK
|
|
select DRM_KMS_HELPER
|
|
select DRM_KMS_CMA_HELPER
|
|
select DRM_GEM_CMA_HELPER
|
|
select DRM_PANEL
|
|
select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
|
|
help
|
|
Choose this option for DRM support for the PL111 CLCD controller.
|
|
If M is selected the module will be called pl111_drm.
|
|
|