diff mbox

ARM: mach-shmobile: mackerel: change usbhs devices order

Message ID w3pips5oz5i.wl%kuninori.morimoto.gx@renesas.com (mailing list archive)
State Accepted
Commit 5a5685525dbadbe31b8efb113c0d41be8cddda09
Headers show

Commit Message

Kuninori Morimoto June 17, 2011, 4:33 a.m. UTC
USB1 can use IRQ interrupt and notify function for usbhs driver,
but USB0 is using polling for it.
The priority of usbhs devices order USB1 > USB0 is good idea

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

Comments

Simon Horman June 19, 2011, 10:49 p.m. UTC | #1
On Fri, Jun 17, 2011 at 01:33:13PM +0900, Kuninori Morimoto wrote:
> USB1 can use IRQ interrupt and notify function for usbhs driver,
> but USB0 is using polling for it.
> The priority of usbhs devices order USB1 > USB0 is good idea
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Its a shame this wasn't added in the correct order when
it was recently added :-)

Reviewed-by: Simon Horman <horms@verge.net.au>
--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Paul Mundt June 21, 2011, 8:50 a.m. UTC | #2
On Fri, Jun 17, 2011 at 01:33:13PM +0900, Kuninori Morimoto wrote:
> USB1 can use IRQ interrupt and notify function for usbhs driver,
> but USB0 is using polling for it.
> The priority of usbhs devices order USB1 > USB0 is good idea
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe linux-sh" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c
index 7e1d375..3802f2a 100644
--- a/arch/arm/mach-shmobile/board-mackerel.c
+++ b/arch/arm/mach-shmobile/board-mackerel.c
@@ -1287,9 +1287,9 @@  static struct platform_device *mackerel_devices[] __initdata = {
 	&nor_flash_device,
 	&smc911x_device,
 	&lcdc_device,
-	&usbhs0_device,
 	&usb1_host_device,
 	&usbhs1_device,
+	&usbhs0_device,
 	&leds_device,
 	&fsi_device,
 	&fsi_ak4643_device,