linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: shmobile: armadillo800eva: fixup: sound card detection order
@ 2012-08-09  6:03 Kuninori Morimoto
  2012-08-27  8:48 ` Simon Horman
                   ` (25 more replies)
  0 siblings, 26 replies; 36+ messages in thread
From: Kuninori Morimoto @ 2012-08-09  6:03 UTC (permalink / raw)
  To: linux-sh

Since armadillo800eva has 2 sound cards,
and had reversed deferred probe order issue,
it was purposely registered in reverse order.

But it was solved by
1d29cfa57471a5e4b8a7c2a7433eeba170d3ad92
(driver core: fixup reversed deferred probe order)

armadillo800eva board is expecting that
FSI-WM8978 is the 1st, and FSI-HDMI is the 2nd sound card.
This patch fixes it up

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm/mach-shmobile/board-armadillo800eva.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-armadillo800eva.c b/arch/arm/mach-shmobile/board-armadillo800eva.c
index cf10f92..ecd8136 100644
--- a/arch/arm/mach-shmobile/board-armadillo800eva.c
+++ b/arch/arm/mach-shmobile/board-armadillo800eva.c
@@ -901,8 +901,8 @@ static struct platform_device *eva_devices[] __initdata = {
 	&camera_device,
 	&ceu0_device,
 	&fsi_device,
-	&fsi_hdmi_device,
 	&fsi_wm8978_device,
+	&fsi_hdmi_device,
 };
 
 static void __init eva_clock_init(void)
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 36+ messages in thread
* [GIT PULL] Renesas ARM Based SoC Fixes for v3.16
@ 2014-05-29 23:31 Simon Horman
  2014-05-29 23:31 ` [PATCH] ARM: shmobile: armadillo800eva: fixup HDMI sound flags setting Simon Horman
  0 siblings, 1 reply; 36+ messages in thread
From: Simon Horman @ 2014-05-29 23:31 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM based SoC fixes for v3.16.

This corrects a bug that will be introduced in v3.15.
The bug causes audio playback to fail on the Armadillo800 EVA board.

I am posting this as a fix for v3.16 rather than v3.15 as I believe
it is too late in the v3.15 cycle for a change of this nature.
As such I would also like this change considered for v3.15 -stable.


The following changes since commit c9eaa447e77efe77b7fa4c953bd62de8297fd6c5:

  Linux 3.15-rc1 (2014-04-13 14:18:35 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-fixes-for-v3.16

for you to fetch changes up to 730359857f5f0e1fac9881c63d389d73adb5f416:

  ARM: shmobile: armadillo800eva: fixup HDMI sound flags setting (2014-05-28 12:57:07 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Fixes for v3.16

This corrects a bug that will be introduced in v3.15.
The bug causes audio playback to fail on the Armadillo800 EVA board.

----------------------------------------------------------------
Kuninori Morimoto (1):
      ARM: shmobile: armadillo800eva: fixup HDMI sound flags setting

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

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

end of thread, other threads:[~2014-09-24  0:59 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-09  6:03 [PATCH] ARM: shmobile: armadillo800eva: fixup: sound card detection order Kuninori Morimoto
2012-08-27  8:48 ` Simon Horman
2012-08-31  6:33 ` Simon Horman
2012-09-03  6:06 ` [PATCH] ARM: shmobile: armadillo800eva: enable rw rootfs mount Kuninori Morimoto
2012-09-03  8:34 ` Simon Horman
2012-09-13  3:10 ` [PATCH] ARM: shmobile: armadillo800eva: Add support RTC Nobuhiro Iwamatsu
2012-09-13  4:06   ` Simon Horman
2012-09-13  5:11     ` Nobuhiro Iwamatsu
2012-10-12  1:24 ` [PATCH] ARM: shmobile: armadillo800eva: __io abuse cleanup Kuninori Morimoto
2012-10-12  1:39 ` [PATCH] ARM: shmobile: armadillo800eva: enable restart Kuninori Morimoto
2012-10-12  4:25 ` Simon Horman
2012-10-12  4:32 ` [PATCH] ARM: shmobile: armadillo800eva: __io abuse cleanup Simon Horman
2013-01-18  5:02 ` [PATCH] ARM: shmobile: armadillo800eva: set clock rates before timer init Hideki EIRAKU
2013-01-18  6:28   ` Kuninori Morimoto
2013-01-30  4:23   ` Simon Horman
2013-04-15  4:44 ` [PATCH] arm: shmobile: armadillo800eva: Fix maximum number of SCIF Nobuhiro Iwamatsu
2013-04-16  2:35   ` Simon Horman
2013-07-02 15:24 ` [PATCH] ARM: shmobile: armadillo800eva: add DMA support to MMCIF Guennadi Liakhovetski
2013-07-03  6:05 ` Simon Horman
2013-07-24  8:16 ` [PATCH] ARM: shmobile: armadillo800eva: tidyup ST1232 pin settings Kuninori Morimoto
2013-07-24  9:58 ` Laurent Pinchart
2013-07-25  0:50 ` [PATCH] ARM: shmobile: armadillo800eva: Don't request GPIO 166 in board code Kuninori Morimoto
2013-12-18 14:03 ` [PATCH] ARM: shmobile: armadillo800eva: Enable backlight control in defconfig Laurent Pinchart
2013-12-19  6:13 ` Simon Horman
2014-04-14  0:59 ` [PATCH] ARM: shmobile: armadillo800eva: fixup SND_SOC_DAIFMT_CBx_CFx flags Kuninori Morimoto
2014-04-14  3:48 ` Simon Horman
2014-05-28  2:57 ` [PATCH] ARM: shmobile: armadillo800eva: fixup HDMI sound flags setting Kuninori Morimoto
2014-05-28  4:06 ` Simon Horman
2014-05-28  4:23 ` Kuninori Morimoto
2014-05-28  4:41 ` Simon Horman
2014-05-28  8:47 ` Geert Uytterhoeven
2014-08-11  2:38 ` [PATCH] ARM: shmobile: armadillo800eva: Sort includes Simon Horman
2014-08-22  1:47   ` Simon Horman
2014-09-02  1:16     ` Simon Horman
2014-09-24  0:59       ` Simon Horman
  -- strict thread matches above, loose matches on Subject: below --
2014-05-29 23:31 [GIT PULL] Renesas ARM Based SoC Fixes for v3.16 Simon Horman
2014-05-29 23:31 ` [PATCH] ARM: shmobile: armadillo800eva: fixup HDMI sound flags setting Simon Horman

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).