Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix
@ 2010-09-10  7:40 Jassi Brar
  2010-09-10 11:18 ` Liam Girdwood
  2010-09-10 11:38 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Jassi Brar @ 2010-09-10  7:40 UTC (permalink / raw)
  To: alsa-devel; +Cc: sw.youn, broonie, Jassi Brar, lrg

From: Jassi Brar <jassi.brar@samsung.com>

Drop the invalid -dai suffix appended to the Samsung AC97 CPU DAI.

Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
---
 sound/soc/s3c24xx/smdk2443_wm9710.c |    2 +-
 sound/soc/s3c24xx/smdk_wm9713.c     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/s3c24xx/smdk2443_wm9710.c b/sound/soc/s3c24xx/smdk2443_wm9710.c
index 66f9e22..4613288 100644
--- a/sound/soc/s3c24xx/smdk2443_wm9710.c
+++ b/sound/soc/s3c24xx/smdk2443_wm9710.c
@@ -28,7 +28,7 @@ static struct snd_soc_dai_link smdk2443_dai[] = {
 {
 	.name = "AC97",
 	.stream_name = "AC97 HiFi",
-	.cpu_dai_name = "s3c-ac97-dai",
+	.cpu_dai_name = "s3c-ac97",
 	.codec_dai_name = "ac97-hifi",
 	.codec_name = "ac97-codec",
 	.platform_name = "s3c24xx-pcm-audio",
diff --git a/sound/soc/s3c24xx/smdk_wm9713.c b/sound/soc/s3c24xx/smdk_wm9713.c
index 90108a7..11086f8 100644
--- a/sound/soc/s3c24xx/smdk_wm9713.c
+++ b/sound/soc/s3c24xx/smdk_wm9713.c
@@ -47,7 +47,7 @@ static struct snd_soc_dai_link smdk_dai = {
 	.name = "AC97",
 	.stream_name = "AC97 PCM",
 	.platform_name = "s3c24xx-pcm-audio",
-	.cpu_dai_name = "s3c-ac97-dai",
+	.cpu_dai_name = "s3c-ac97",
 	.codec_dai_name = "wm9713-hifi",
 	.codec_name = "wm9713-codec",
 };
-- 
1.6.2.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix
  2010-09-10  7:40 [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix Jassi Brar
@ 2010-09-10 11:18 ` Liam Girdwood
  2010-09-10 11:38 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Liam Girdwood @ 2010-09-10 11:18 UTC (permalink / raw)
  To: Jassi Brar; +Cc: alsa-devel, broonie, Jassi Brar, sw.youn

On Fri, 2010-09-10 at 16:40 +0900, Jassi Brar wrote:
> From: Jassi Brar <jassi.brar@samsung.com>
> 
> Drop the invalid -dai suffix appended to the Samsung AC97 CPU DAI.
> 
> Signed-off-by: Jassi Brar <jassi.brar@samsung.com>
> ---
>  sound/soc/s3c24xx/smdk2443_wm9710.c |    2 +-
>  sound/soc/s3c24xx/smdk_wm9713.c     |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/soc/s3c24xx/smdk2443_wm9710.c b/sound/soc/s3c24xx/smdk2443_wm9710.c
> index 66f9e22..4613288 100644
> --- a/sound/soc/s3c24xx/smdk2443_wm9710.c
> +++ b/sound/soc/s3c24xx/smdk2443_wm9710.c
> @@ -28,7 +28,7 @@ static struct snd_soc_dai_link smdk2443_dai[] = {
>  {
>  	.name = "AC97",
>  	.stream_name = "AC97 HiFi",
> -	.cpu_dai_name = "s3c-ac97-dai",
> +	.cpu_dai_name = "s3c-ac97",
>  	.codec_dai_name = "ac97-hifi",
>  	.codec_name = "ac97-codec",
>  	.platform_name = "s3c24xx-pcm-audio",
> diff --git a/sound/soc/s3c24xx/smdk_wm9713.c b/sound/soc/s3c24xx/smdk_wm9713.c
> index 90108a7..11086f8 100644
> --- a/sound/soc/s3c24xx/smdk_wm9713.c
> +++ b/sound/soc/s3c24xx/smdk_wm9713.c
> @@ -47,7 +47,7 @@ static struct snd_soc_dai_link smdk_dai = {
>  	.name = "AC97",
>  	.stream_name = "AC97 PCM",
>  	.platform_name = "s3c24xx-pcm-audio",
> -	.cpu_dai_name = "s3c-ac97-dai",
> +	.cpu_dai_name = "s3c-ac97",
>  	.codec_dai_name = "wm9713-hifi",
>  	.codec_name = "wm9713-codec",
>  };

Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix
  2010-09-10  7:40 [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix Jassi Brar
  2010-09-10 11:18 ` Liam Girdwood
@ 2010-09-10 11:38 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2010-09-10 11:38 UTC (permalink / raw)
  To: Jassi Brar; +Cc: alsa-devel, sw.youn, Jassi Brar, lrg

On Fri, Sep 10, 2010 at 04:40:31PM +0900, Jassi Brar wrote:
> From: Jassi Brar <jassi.brar@samsung.com>
> 
> Drop the invalid -dai suffix appended to the Samsung AC97 CPU DAI.
> 
> Signed-off-by: Jassi Brar <jassi.brar@samsung.com>

Applied, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-09-10 11:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-10  7:40 [PATCH 1/3] ASoC: S3C: AC97: Remove the -dai suffix Jassi Brar
2010-09-10 11:18 ` Liam Girdwood
2010-09-10 11:38 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox