summaryrefslogtreecommitdiffstats
path: root/sound/soc/sh/fsi-ak4642.c
diff options
context:
space:
mode:
authorKuninori Morimoto2010-08-30 13:47:19 +0200
committerMark Brown2010-08-31 14:28:13 +0200
commit2c280320f22153f7035a76ee0948f5577c5482b5 (patch)
tree59c0a4b955d137286bd469e707a6cb2bd2d452dc /sound/soc/sh/fsi-ak4642.c
parentASoC: fsi: modify compile error (diff)
downloadkernel-qcow2-linux-2c280320f22153f7035a76ee0948f5577c5482b5.tar.gz
kernel-qcow2-linux-2c280320f22153f7035a76ee0948f5577c5482b5.tar.xz
kernel-qcow2-linux-2c280320f22153f7035a76ee0948f5577c5482b5.zip
ASoC: fsi-ak4642/fsi-da7210: modify dai link settings for card detect
This patch modify dai link - platform_name: sh_fsi/sh_fsi2 are used for FSI driver - codec_name: ak4642/ak4643 are used for ak4642 driver This is quick hack. I should modify it more wisely in future Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/sh/fsi-ak4642.c')
-rw-r--r--sound/soc/sh/fsi-ak4642.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sound/soc/sh/fsi-ak4642.c b/sound/soc/sh/fsi-ak4642.c
index 9e107a9c4010..53836ca11d3b 100644
--- a/sound/soc/sh/fsi-ak4642.c
+++ b/sound/soc/sh/fsi-ak4642.c
@@ -31,8 +31,13 @@ static struct snd_soc_dai_link fsi_dai_link = {
.stream_name = "AK4642",
.cpu_dai_name = "fsia-dai", /* fsi A */
.codec_dai_name = "ak4642-hifi",
- .platform_name = "fsi-pcm-audio",
+#ifdef CONFIG_MACH_AP4EVB
+ .platform_name = "sh_fsi2.0",
+ .codec_name = "ak4642-codec.0-0013",
+#else
+ .platform_name = "sh_fsi.0",
.codec_name = "ak4642-codec.0-0012",
+#endif
.init = fsi_ak4642_dai_init,
.ops = NULL,
};