Commit 4f7f1973 authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

drm/vram: fix Kconfig



select isn't recursive, so we can't turn on DRM_TTM + DRM_TTM_HELPER
in config DRM_VRAM_HELPER, we have to select them on the vram users
instead.

Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Acked-by: default avatarThomas Zimmermann <tzimmermann@suse.de>
Link: http://patchwork.freedesktop.org/patch/msgid/20190904054740.20817-8-kraxel@redhat.com
parent 78d54f1f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -168,8 +168,6 @@ config DRM_TTM
config DRM_VRAM_HELPER
	tristate
	depends on DRM
	select DRM_TTM
	select DRM_TTM_HELPER
	help
	  Helpers for VRAM memory management

+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ config DRM_AST
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_VRAM_HELPER
	select DRM_TTM
	select DRM_TTM_HELPER
	help
	 Say yes for experimental AST GPU driver. Do not enable
	 this driver without having a working -modesetting,
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ config DRM_BOCHS
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_VRAM_HELPER
	select DRM_TTM
	select DRM_TTM_HELPER
	help
	  Choose this option for qemu.
	  If M is selected the module will be called bochs-drm.
+2 −1
Original line number Diff line number Diff line
@@ -4,7 +4,8 @@ config DRM_HISI_HIBMC
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_VRAM_HELPER

	select DRM_TTM
	select DRM_TTM_HELPER
	help
	  Choose this option if you have a Hisilicon Hibmc soc chipset.
	  If M is selected the module will be called hibmc-drm.
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ config DRM_MGAG200
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_VRAM_HELPER
	select DRM_TTM
	select DRM_TTM_HELPER
	help
	 This is a KMS driver for the MGA G200 server chips, it
         does not support the original MGA G200 or any of the desktop
Loading