diff options
Diffstat (limited to 'sound/soc/codecs/spdif_receiver.c')
-rw-r--r-- | sound/soc/codecs/spdif_receiver.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/sound/soc/codecs/spdif_receiver.c b/sound/soc/codecs/spdif_receiver.c index e9d7881ed2c8..e3501f40c7b3 100644 --- a/sound/soc/codecs/spdif_receiver.c +++ b/sound/soc/codecs/spdif_receiver.c | |||
@@ -23,11 +23,26 @@ | |||
23 | #include <sound/initval.h> | 23 | #include <sound/initval.h> |
24 | #include <linux/of.h> | 24 | #include <linux/of.h> |
25 | 25 | ||
26 | static const struct snd_soc_dapm_widget dir_widgets[] = { | ||
27 | SND_SOC_DAPM_INPUT("spdif-in"), | ||
28 | }; | ||
29 | |||
30 | static const struct snd_soc_dapm_route dir_routes[] = { | ||
31 | { "Capture", NULL, "spdif-in" }, | ||
32 | }; | ||
33 | |||
26 | #define STUB_RATES SNDRV_PCM_RATE_8000_192000 | 34 | #define STUB_RATES SNDRV_PCM_RATE_8000_192000 |
27 | #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ | 35 | #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ |
36 | SNDRV_PCM_FMTBIT_S20_3LE | \ | ||
37 | SNDRV_PCM_FMTBIT_S24_LE | \ | ||
28 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE) | 38 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE) |
29 | 39 | ||
30 | static struct snd_soc_codec_driver soc_codec_spdif_dir; | 40 | static struct snd_soc_codec_driver soc_codec_spdif_dir = { |
41 | .dapm_widgets = dir_widgets, | ||
42 | .num_dapm_widgets = ARRAY_SIZE(dir_widgets), | ||
43 | .dapm_routes = dir_routes, | ||
44 | .num_dapm_routes = ARRAY_SIZE(dir_routes), | ||
45 | }; | ||
31 | 46 | ||
32 | static struct snd_soc_dai_driver dir_stub_dai = { | 47 | static struct snd_soc_dai_driver dir_stub_dai = { |
33 | .name = "dir-hifi", | 48 | .name = "dir-hifi", |