mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 18:12:26 -04:00
Call drm_client_setup() to run the kernel's default client setup for DRM. Set fbdev_probe in struct drm_driver, so that the client setup can start the common fbdev client. The qxl driver specifies a preferred color mode of 32. As this is the default if no format has been given, leave it out entirely. v5: - select DRM_CLIENT_SELECTION Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Cc: Dave Airlie <airlied@redhat.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-70-tzimmermann@suse.de
14 lines
415 B
Plaintext
14 lines
415 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config DRM_QXL
|
|
tristate "QXL virtual GPU"
|
|
depends on DRM && PCI && MMU
|
|
select DRM_CLIENT_SELECTION
|
|
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.
|