mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
ff1ae8f51c
If DEM_QXL is y and DRM_TTM_HELPER is m, building fails:
drivers/gpu/drm/qxl/qxl_object.o: undefined reference to `drm_gem_ttm_print_info'
Select DRM_TTM_HELPER to fix this.
Fixes: 78d54f1f6a
("drm/qxl: use drm_gem_ttm_print_info")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20191008024054.32368-1-yuehaibing@huawei.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
13 lines
386 B
Plaintext
13 lines
386 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_QXL
|
|
tristate "QXL virtual GPU"
|
|
depends on DRM && PCI && MMU
|
|
select DRM_KMS_HELPER
|
|
select DRM_TTM
|
|
select DRM_TTM_HELPER
|
|
select CRC32
|
|
help
|
|
QXL virtual GPU for Spice virtualization desktop integration.
|
|
Do not enable this driver unless your distro ships a corresponding
|
|
X.org QXL driver that can handle kernel modesetting.
|