Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 011cda58 authored by Benjamin Gaignard's avatar Benjamin Gaignard Committed by Daniel Vetter
Browse files

drm: fix compilations issues introduced by "drm: allow to use mmuless SoC"



Removing MMU configuration flag from DRM make few automatic
build failed when they answer yes to all flags.

Add asm/vga.h file on Blackfin architecture to not broke compilation.

Signed-off-by: default avatarBenjamin Gaignard <benjamin.gaignard@linaro.org>
Fixes: 62a0d98a ("drm: allow to use mmuless SoC")
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/1483789151-6603-1-git-send-email-benjamin.gaignard@linaro.org
parent 11b3c20b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
#include <asm-generic/vga.h>
+2 −2
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ source "drivers/gpu/drm/arm/Kconfig"

config DRM_RADEON
	tristate "ATI Radeon"
	depends on DRM && PCI
	depends on DRM && PCI && MMU
	select FW_LOADER
        select DRM_KMS_HELPER
        select DRM_TTM
@@ -166,7 +166,7 @@ source "drivers/gpu/drm/radeon/Kconfig"

config DRM_AMDGPU
	tristate "AMD GPU"
	depends on DRM && PCI
	depends on DRM && PCI && MMU
	select FW_LOADER
        select DRM_KMS_HELPER
        select DRM_TTM
+1 −1
Original line number Diff line number Diff line
config DRM_AST
	tristate "AST server chips"
	depends on DRM && PCI
	depends on DRM && PCI && MMU
	select DRM_TTM
	select DRM_KMS_HELPER
	select DRM_TTM
+1 −1
Original line number Diff line number Diff line
config DRM_BOCHS
	tristate "DRM Support for bochs dispi vga interface (qemu stdvga)"
	depends on DRM && PCI
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_TTM
	help
+1 −1
Original line number Diff line number Diff line
config DRM_CIRRUS_QEMU
	tristate "Cirrus driver for QEMU emulated device"
	depends on DRM && PCI
	depends on DRM && PCI && MMU
	select DRM_KMS_HELPER
	select DRM_TTM
	help
Loading