diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-03-13 22:52:20 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-03-13 22:52:20 -0500 |
commit | 8ded6bb58631bfbb33e2057147c1398ef996efe6 (patch) | |
tree | 25ff9572642ac15e109a451a40adf90a8d3da2f9 | |
parent | 6902d4a10e9127767db0698d0cdf6836437db344 (diff) | |
download | mediapointer-dvb-s2-8ded6bb58631bfbb33e2057147c1398ef996efe6.tar.gz mediapointer-dvb-s2-8ded6bb58631bfbb33e2057147c1398ef996efe6.tar.bz2 |
cpia2: move Kconfig build logic into cpia2/Kconfig
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | linux/drivers/media/video/Kconfig | 10 | ||||
-rw-r--r-- | linux/drivers/media/video/cpia2/Kconfig | 9 |
2 files changed, 10 insertions, 9 deletions
diff --git a/linux/drivers/media/video/Kconfig b/linux/drivers/media/video/Kconfig index a25a81e5d..9750ee1bb 100644 --- a/linux/drivers/media/video/Kconfig +++ b/linux/drivers/media/video/Kconfig @@ -143,15 +143,7 @@ config VIDEO_CPIA_USB otherwise say N. This will not work with the Creative Webcam III. It is also available as a module (cpia_usb). -config VIDEO_CPIA2 - tristate "CPiA2 Video For Linux" - depends on VIDEO_DEV - ---help--- - This is the video4linux driver for cameras based on Vision's CPiA2 - (Colour Processor Interface ASIC), such as the Digital Blue QX5 - Microscope. If you have one of these cameras, say Y here - - This driver is also available as a module (cpia2). +source "drivers/media/video/cpia2/Kconfig" config VIDEO_SAA5246A tristate "SAA5246A, SAA5281 Teletext processor" diff --git a/linux/drivers/media/video/cpia2/Kconfig b/linux/drivers/media/video/cpia2/Kconfig new file mode 100644 index 000000000..1c09ef981 --- /dev/null +++ b/linux/drivers/media/video/cpia2/Kconfig @@ -0,0 +1,9 @@ +config VIDEO_CPIA2 + tristate "CPiA2 Video For Linux" + depends on VIDEO_DEV + ---help--- + This is the video4linux driver for cameras based on Vision's CPiA2 + (Colour Processor Interface ASIC), such as the Digital Blue QX5 + Microscope. If you have one of these cameras, say Y here + + This driver is also available as a module (cpia2). |