summaryrefslogtreecommitdiff
path: root/sound/soc
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2009-05-28 14:51:00 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-05-28 18:54:52 +0100
commit203350c1a8e23adf17fd9a96d8bfc7adf63c1ff6 (patch)
treebff1cd9762426bbc11fc20e813a02311a9aafadd /sound/soc
parentbe461ba836770263826457624bc4a5173a1f5040 (diff)
ASoC: Initialise dev for the dummy S/PDIF DAI
Also include the header to make sure the DAI is prototyped. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc')
-rw-r--r--sound/soc/codecs/spdif_transciever.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/codecs/spdif_transciever.c b/sound/soc/codecs/spdif_transciever.c
index 118e976b28a..218b33adad9 100644
--- a/sound/soc/codecs/spdif_transciever.c
+++ b/sound/soc/codecs/spdif_transciever.c
@@ -19,10 +19,11 @@
#include <sound/soc.h>
#include <sound/pcm.h>
+#include "spdif_transciever.h"
+
#define STUB_RATES SNDRV_PCM_RATE_8000_96000
#define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE
-
struct snd_soc_dai dit_stub_dai = {
.name = "DIT",
.playback = {
@@ -36,6 +37,7 @@ struct snd_soc_dai dit_stub_dai = {
static int spdif_dit_probe(struct platform_device *pdev)
{
+ dit_stub_dai.dev = &pdev->dev;
return snd_soc_register_dai(&dit_stub_dai);
}