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>
This commit is contained in:
parent
be461ba836
commit
203350c1a8
|
@ -19,10 +19,11 @@
|
||||||
#include <sound/soc.h>
|
#include <sound/soc.h>
|
||||||
#include <sound/pcm.h>
|
#include <sound/pcm.h>
|
||||||
|
|
||||||
|
#include "spdif_transciever.h"
|
||||||
|
|
||||||
#define STUB_RATES SNDRV_PCM_RATE_8000_96000
|
#define STUB_RATES SNDRV_PCM_RATE_8000_96000
|
||||||
#define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE
|
#define STUB_FORMATS SNDRV_PCM_FMTBIT_S16_LE
|
||||||
|
|
||||||
|
|
||||||
struct snd_soc_dai dit_stub_dai = {
|
struct snd_soc_dai dit_stub_dai = {
|
||||||
.name = "DIT",
|
.name = "DIT",
|
||||||
.playback = {
|
.playback = {
|
||||||
|
@ -36,6 +37,7 @@ struct snd_soc_dai dit_stub_dai = {
|
||||||
|
|
||||||
static int spdif_dit_probe(struct platform_device *pdev)
|
static int spdif_dit_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
|
dit_stub_dai.dev = &pdev->dev;
|
||||||
return snd_soc_register_dai(&dit_stub_dai);
|
return snd_soc_register_dai(&dit_stub_dai);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue