alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ASoC: fsi: fixup compile error for simple-card
       [not found] <5323ad1c.V6m3nhSN8UwkI6jk%fengguang.wu@intel.com>
@ 2014-03-17  0:37 ` Kuninori Morimoto
  2014-03-17  1:18   ` Simon Horman
  2014-03-17 13:20   ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Kuninori Morimoto @ 2014-03-17  0:37 UTC (permalink / raw)
  To: Mark Brown
  Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto, Kuninori Morimoto

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patches fixes
c7a507eea1db1430476289f525f9c853d5d485e8
(ASoC: fsi: fixup SND_SOC_DAIFMT_CBx_CFx flags)
commit's compie error

arch/arm/mach-shmobile/board-mackerel.c:512:2: \
  error: unknown field 'fmt' specified in initializer

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
Mark

This patch is for mark/fix/rcar

 arch/arm/mach-shmobile/board-mackerel.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
index 8c43321..0ff4d8e 100644
--- a/arch/arm/mach-shmobile/board-mackerel.c
+++ b/arch/arm/mach-shmobile/board-mackerel.c
@@ -509,7 +509,7 @@ static struct asoc_simple_card_info fsi2_hdmi_info = {
 	.card		= "FSI2B-HDMI",
 	.codec		= "sh-mobile-hdmi",
 	.platform	= "sh_fsi2",
-	.fmt		= SND_SOC_DAIFMT_CBS_CFS,
+	.daifmt		= SND_SOC_DAIFMT_CBS_CFS,
 	.cpu_dai = {
 		.name	= "fsib-dai",
 	},
-- 
1.7.9.5

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

* Re: [PATCH] ASoC: fsi: fixup compile error for simple-card
  2014-03-17  0:37 ` [PATCH] ASoC: fsi: fixup compile error for simple-card Kuninori Morimoto
@ 2014-03-17  1:18   ` Simon Horman
  2014-03-17 13:20   ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2014-03-17  1:18 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Linux-ALSA, Mark Brown, Liam Girdwood, Kuninori Morimoto

On Sun, Mar 16, 2014 at 05:37:06PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patches fixes
> c7a507eea1db1430476289f525f9c853d5d485e8
> (ASoC: fsi: fixup SND_SOC_DAIFMT_CBx_CFx flags)
> commit's compie error
> 
> arch/arm/mach-shmobile/board-mackerel.c:512:2: \
>   error: unknown field 'fmt' specified in initializer
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Acked-by: Simon Horman <horms+renesas@verge.net.au>

> ---
> Mark
> 
> This patch is for mark/fix/rcar
> 
>  arch/arm/mach-shmobile/board-mackerel.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
> index 8c43321..0ff4d8e 100644
> --- a/arch/arm/mach-shmobile/board-mackerel.c
> +++ b/arch/arm/mach-shmobile/board-mackerel.c
> @@ -509,7 +509,7 @@ static struct asoc_simple_card_info fsi2_hdmi_info = {
>  	.card		= "FSI2B-HDMI",
>  	.codec		= "sh-mobile-hdmi",
>  	.platform	= "sh_fsi2",
> -	.fmt		= SND_SOC_DAIFMT_CBS_CFS,
> +	.daifmt		= SND_SOC_DAIFMT_CBS_CFS,
>  	.cpu_dai = {
>  		.name	= "fsib-dai",
>  	},
> -- 
> 1.7.9.5
> 

-- 
Simon Horman/ホーマン サイモン        simon@horms.net
Horms Solutions 株式会社                www.horms.net
〒651-0084 兵庫県神戸市中央区磯辺通4-1-8 ITCビル901号
Tel: 03 6365 5977                   Fax: 03 6673 4268
Skype: horms7
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
http://mailman.alsa-project.org/mailman/listinfo/alsa-devel

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

* Re: [PATCH] ASoC: fsi: fixup compile error for simple-card
  2014-03-17  0:37 ` [PATCH] ASoC: fsi: fixup compile error for simple-card Kuninori Morimoto
  2014-03-17  1:18   ` Simon Horman
@ 2014-03-17 13:20   ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2014-03-17 13:20 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: Linux-ALSA, Simon, Liam Girdwood, Kuninori Morimoto


[-- Attachment #1.1: Type: text/plain, Size: 296 bytes --]

On Sun, Mar 16, 2014 at 05:37:06PM -0700, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patches fixes
> c7a507eea1db1430476289f525f9c853d5d485e8
> (ASoC: fsi: fixup SND_SOC_DAIFMT_CBx_CFx flags)
> commit's compie error

applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

end of thread, other threads:[~2014-03-17 13:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <5323ad1c.V6m3nhSN8UwkI6jk%fengguang.wu@intel.com>
2014-03-17  0:37 ` [PATCH] ASoC: fsi: fixup compile error for simple-card Kuninori Morimoto
2014-03-17  1:18   ` Simon Horman
2014-03-17 13:20   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).