diff options
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/Kconfig | 7 | ||||
-rw-r--r-- | drivers/video/Makefile | 3 |
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 | ||
14 | config 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 | |||
14 | config FB | 21 | config 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 |
121 | obj-$(CONFIG_FB_VIRTUAL) += vfb.o | 121 | obj-$(CONFIG_FB_VIRTUAL) += vfb.o |
122 | |||
123 | #video output switch sysfs driver | ||
124 | obj-$(CONFIG_VIDEO_OUTPUT_CONTROL) += output.o | ||