diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-16 10:02:07 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-03-16 10:13:57 -0400 |
commit | f2a5d6a2ea2fa24573a8ce7ea7a7a2cce42e3588 (patch) | |
tree | 0719eee496f2edec29573181203887dd391c5a3d /sound/soc/s3c24xx | |
parent | 10d9e3d99ee8332bb73a3d7f12a8cd8ffab8b136 (diff) |
ASoC: Fix some missing dai_ops conversions
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/s3c24xx')
-rw-r--r-- | sound/soc/s3c24xx/s3c64xx-i2s.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sound/soc/s3c24xx/s3c64xx-i2s.c b/sound/soc/s3c24xx/s3c64xx-i2s.c index 6e1e85dc1ff2..33c5de7e255f 100644 --- a/sound/soc/s3c24xx/s3c64xx-i2s.c +++ b/sound/soc/s3c24xx/s3c64xx-i2s.c | |||
@@ -177,6 +177,10 @@ static int s3c64xx_i2s_probe(struct platform_device *pdev, | |||
177 | #define S3C64XX_I2S_FMTS \ | 177 | #define S3C64XX_I2S_FMTS \ |
178 | (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE) | 178 | (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE) |
179 | 179 | ||
180 | static struct snd_soc_dai_ops s3c64xx_i2s_dai_ops = { | ||
181 | .set_sysclk = s3c64xx_i2s_set_sysclk, | ||
182 | }; | ||
183 | |||
180 | struct snd_soc_dai s3c64xx_i2s_dai = { | 184 | struct snd_soc_dai s3c64xx_i2s_dai = { |
181 | .name = "s3c64xx-i2s", | 185 | .name = "s3c64xx-i2s", |
182 | .id = 0, | 186 | .id = 0, |
@@ -193,9 +197,7 @@ struct snd_soc_dai s3c64xx_i2s_dai = { | |||
193 | .rates = S3C64XX_I2S_RATES, | 197 | .rates = S3C64XX_I2S_RATES, |
194 | .formats = S3C64XX_I2S_FMTS, | 198 | .formats = S3C64XX_I2S_FMTS, |
195 | }, | 199 | }, |
196 | .ops = { | 200 | .ops = &s3c64xx_i2s_dai_ops, |
197 | .set_sysclk = s3c64xx_i2s_set_sysclk, | ||
198 | }, | ||
199 | }; | 201 | }; |
200 | EXPORT_SYMBOL_GPL(s3c64xx_i2s_dai); | 202 | EXPORT_SYMBOL_GPL(s3c64xx_i2s_dai); |
201 | 203 | ||