Revision 12be96f2e8e8706c22fbc41f17480d8f84b8b8f3 authored by Alexander Potapenko on 15 May 2018, 13:32:36 UTC, committed by Alexander Potapenko on 28 August 2018, 10:29:17 UTC
These functions touch memory one block at a time. Because they're often
implemented in assembly, we just unpoison the output blocks and check
the inputs.
1 parent 2a08666
Raw File
Kconfig
#
# Video configuration
#

menu "Graphics support"

if HAS_IOMEM

config HAVE_FB_ATMEL
	bool

source "drivers/char/agp/Kconfig"

source "drivers/gpu/vga/Kconfig"

source "drivers/gpu/host1x/Kconfig"
source "drivers/gpu/ipu-v3/Kconfig"

source "drivers/gpu/drm/Kconfig"

menu "Frame buffer Devices"
source "drivers/video/fbdev/Kconfig"
endmenu

source "drivers/video/backlight/Kconfig"

config VGASTATE
       tristate
       default n

config VIDEOMODE_HELPERS
	bool

config HDMI
	bool

endif # HAS_IOMEM

if VT
	source "drivers/video/console/Kconfig"
endif

if FB || SGI_NEWPORT_CONSOLE
	source "drivers/video/logo/Kconfig"

endif


endmenu
back to top