Kconfig (fc8a327db6c46de783b1a4276d846841b9abc24c) | Kconfig (89fe5117928b2c1272c9376362131ded561c91ad) |
---|---|
1#SPI drivers 2 | 1#SPI drivers 2 |
3menu "SPI devices" 4 depends on SND != n | 3menuconfig SND_SPI 4 bool "SPI sound devices" 5 depends on SPI 6 default y 7 help 8 Support for sound devices connected via the SPI bus. |
5 | 9 |
10if SND_SPI 11 |
|
6config SND_AT73C213 7 tristate "Atmel AT73C213 DAC driver" 8 depends on ATMEL_SSC 9 select SND_PCM 10 help 11 Say Y here if you want to use the Atmel AT73C213 external DAC. This 12 DAC can be found on Atmel development boards. 13 --- 9 unchanged lines hidden (view full) --- 23 default "48000" 24 range 8000 50000 25 help 26 Sets the target bitrate for the bitrate calculator in the driver. 27 Limited by hardware to be between 8000 Hz and 50000 Hz. 28 29 Set to 48000 Hz by default. 30 | 12config SND_AT73C213 13 tristate "Atmel AT73C213 DAC driver" 14 depends on ATMEL_SSC 15 select SND_PCM 16 help 17 Say Y here if you want to use the Atmel AT73C213 external DAC. This 18 DAC can be found on Atmel development boards. 19 --- 9 unchanged lines hidden (view full) --- 29 default "48000" 30 range 8000 50000 31 help 32 Sets the target bitrate for the bitrate calculator in the driver. 33 Limited by hardware to be between 8000 Hz and 50000 Hz. 34 35 Set to 48000 Hz by default. 36 |
31endmenu | 37endif # SND_SPI 38 |