|
@@ -29,7 +29,20 @@
|
|
|
SNDRV_PCM_FMTBIT_S20_3LE | \
|
|
|
SNDRV_PCM_FMTBIT_S24_LE)
|
|
|
|
|
|
-static struct snd_soc_codec_driver soc_codec_spdif_dit;
|
|
|
+static const struct snd_soc_dapm_widget dit_widgets[] = {
|
|
|
+ SND_SOC_DAPM_OUTPUT("spdif-out"),
|
|
|
+};
|
|
|
+
|
|
|
+static const const struct snd_soc_dapm_route dit_routes[] = {
|
|
|
+ { "spdif-out", NULL, "Playback" },
|
|
|
+};
|
|
|
+
|
|
|
+static struct snd_soc_codec_driver soc_codec_spdif_dit = {
|
|
|
+ .dapm_widgets = dit_widgets,
|
|
|
+ .num_dapm_widgets = ARRAY_SIZE(dit_widgets),
|
|
|
+ .dapm_routes = dit_routes,
|
|
|
+ .num_dapm_routes = ARRAY_SIZE(dit_routes),
|
|
|
+};
|
|
|
|
|
|
static struct snd_soc_dai_driver dit_stub_dai = {
|
|
|
.name = "dit-hifi",
|