aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/twl4030.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/twl4030.c')
-rw-r--r--sound/soc/codecs/twl4030.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c
index 86bb15cc82ce..97738e2ece04 100644
--- a/sound/soc/codecs/twl4030.c
+++ b/sound/soc/codecs/twl4030.c
@@ -1383,6 +1383,12 @@ static int twl4030_set_dai_fmt(struct snd_soc_dai *codec_dai,
1383#define TWL4030_RATES (SNDRV_PCM_RATE_8000_48000) 1383#define TWL4030_RATES (SNDRV_PCM_RATE_8000_48000)
1384#define TWL4030_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FORMAT_S24_LE) 1384#define TWL4030_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FORMAT_S24_LE)
1385 1385
1386static struct snd_soc_dai_ops twl4030_dai_ops = {
1387 .hw_params = twl4030_hw_params,
1388 .set_sysclk = twl4030_set_dai_sysclk,
1389 .set_fmt = twl4030_set_dai_fmt,
1390};
1391
1386struct snd_soc_dai twl4030_dai = { 1392struct snd_soc_dai twl4030_dai = {
1387 .name = "twl4030", 1393 .name = "twl4030",
1388 .playback = { 1394 .playback = {
@@ -1397,11 +1403,7 @@ struct snd_soc_dai twl4030_dai = {
1397 .channels_max = 2, 1403 .channels_max = 2,
1398 .rates = TWL4030_RATES, 1404 .rates = TWL4030_RATES,
1399 .formats = TWL4030_FORMATS,}, 1405 .formats = TWL4030_FORMATS,},
1400 .ops = { 1406 .ops = &twl4030_dai_ops,
1401 .hw_params = twl4030_hw_params,
1402 .set_sysclk = twl4030_set_dai_sysclk,
1403 .set_fmt = twl4030_set_dai_fmt,
1404 }
1405}; 1407};
1406EXPORT_SYMBOL_GPL(twl4030_dai); 1408EXPORT_SYMBOL_GPL(twl4030_dai);
1407 1409