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.

ASoC: Updates for mchp-spdif(tx/rx)

Merge series from Andrei Simion <andrei.simion@microchip.com>:

This patch set includes two updates for the MCHP SPDIF RX and TX drivers.
The patches remove the interface name from the stream_name, allowing the
interface name and index to be set in the Device Tree (DT) using the
sound-name-prefix string property.

+2 -2
+1 -1
sound/soc/atmel/mchp-spdifrx.c
··· 1014 1014 static struct snd_soc_dai_driver mchp_spdifrx_dai = { 1015 1015 .name = "mchp-spdifrx", 1016 1016 .capture = { 1017 - .stream_name = "S/PDIF Capture", 1017 + .stream_name = "Capture", 1018 1018 .channels_min = SPDIFRX_CHANNELS, 1019 1019 .channels_max = SPDIFRX_CHANNELS, 1020 1020 .rates = MCHP_SPDIF_RATES,
+1 -1
sound/soc/atmel/mchp-spdiftx.c
··· 707 707 static struct snd_soc_dai_driver mchp_spdiftx_dai = { 708 708 .name = "mchp-spdiftx", 709 709 .playback = { 710 - .stream_name = "S/PDIF Playback", 710 + .stream_name = "Playback", 711 711 .channels_min = 1, 712 712 .channels_max = 2, 713 713 .rates = MCHP_SPDIFTX_RATES,