diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2012-08-09 02:03:07 -0400 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-08-31 02:29:42 -0400 |
commit | ee3c843d0fc21c68ced93b982b5731178a24df68 (patch) | |
tree | c5509fdc723f9365b59ab9574853b142d09bc5ff | |
parent | 497dcf6fc355f0734faf851662b6957386715d24 (diff) |
ARM: shmobile: armadillo800eva: fixup: sound card detection order
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>
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r-- | 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 cf10f92856dc..ecd8136c5909 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 = { | |||
901 | &camera_device, | 901 | &camera_device, |
902 | &ceu0_device, | 902 | &ceu0_device, |
903 | &fsi_device, | 903 | &fsi_device, |
904 | &fsi_hdmi_device, | ||
905 | &fsi_wm8978_device, | 904 | &fsi_wm8978_device, |
905 | &fsi_hdmi_device, | ||
906 | }; | 906 | }; |
907 | 907 | ||
908 | static void __init eva_clock_init(void) | 908 | static void __init eva_clock_init(void) |