Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.0-rc1 58 lines 1.5 kB view raw
1config EASYCAP 2 tristate "EasyCAP USB ID 05e1:0408 support" 3 depends on USB && VIDEO_DEV && (SND || SOUND_OSS_CORE) 4 5 ---help--- 6 This is an integrated audio/video driver for EasyCAP cards with 7 USB ID 05e1:0408. It supports two hardware variants: 8 9 * EasyCAP USB 2.0 Video Adapter with Audio, Model DC60, 10 having input cables labelled CVBS, S-VIDEO, AUDIO(L), AUDIO(R) 11 12 * EasyCAP002 4-Channel USB 2.0 DVR, having input cables labelled 13 1, 2, 3, 4 and an unlabelled input cable for a microphone. 14 15 To compile this driver as a module, choose M here: the 16 module will be called easycap 17 18choice 19 prompt "Sound Interface" 20 depends on EASYCAP 21 default EASYCAP_SND 22 ---help--- 23 24config EASYCAP_SND 25 bool "ALSA" 26 depends on SND 27 select SND_PCM 28 29 ---help--- 30 Say 'Y' if you want to use ALSA interface 31 32 This will disable Open Sound System (OSS) binding. 33 34config EASYCAP_OSS 35 bool "OSS (DEPRECATED)" 36 depends on SOUND_OSS_CORE 37 38 ---help--- 39 Say 'Y' if you prefer Open Sound System (OSS) interface 40 41 This will disable Advanced Linux Sound Architecture (ALSA) binding. 42 43 Once binding to ALSA interface will be stable this option will be 44 removed. 45endchoice 46 47config EASYCAP_DEBUG 48 bool "Enable EasyCAP driver debugging" 49 depends on EASYCAP 50 51 ---help--- 52 This option enables debug printouts 53 54 To enable debug, pass the debug level to the debug module 55 parameter: 56 57 modprobe easycap debug=[0..9] 58