aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/Kconfig7
-rw-r--r--drivers/video/Makefile3
2 files changed, 10 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 1132ba5ff391..6c8ffe6757e1 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -11,6 +11,13 @@ config VGASTATE
11 tristate 11 tristate
12 default n 12 default n
13 13
14config VIDEO_OUTPUT_CONTROL
15 tristate "Lowlevel video output switch controls"
16 default m
17 help
18 This framework adds support for low-level control of the video
19 output switch.
20
14config FB 21config FB
15 tristate "Support for frame buffer devices" 22 tristate "Support for frame buffer devices"
16 ---help--- 23 ---help---
diff --git a/drivers/video/Makefile b/drivers/video/Makefile
index a916c204274f..08b7c26a5734 100644
--- a/drivers/video/Makefile
+++ b/drivers/video/Makefile
@@ -119,3 +119,6 @@ obj-$(CONFIG_FB_OF) += offb.o
119 119
120# the test framebuffer is last 120# the test framebuffer is last
121obj-$(CONFIG_FB_VIRTUAL) += vfb.o 121obj-$(CONFIG_FB_VIRTUAL) += vfb.o
122
123#video output switch sysfs driver
124obj-$(CONFIG_VIDEO_OUTPUT_CONTROL) += output.o