Skip to content
Snippets Groups Projects
Commit 1f4124ce authored by John Crispin's avatar John Crispin
Browse files

lantiq: Initialize USB on AR9 platform


Based on the ltq-hcd driver the AR9 USB can be initialized the same way
as the VR9 platform. Use the same initialization bits for both
platforms.

Signed-off-by: default avatarAntti Seppälä <a.seppala@gmail.com>

SVN-Revision: 46913
parent fb3fb9b6
No related branches found
No related tags found
No related merge requests found
......@@ -84,11 +84,12 @@
static int __init mips_reboot_setup(void)
{
struct resource res;
@@ -223,6 +293,9 @@ static int __init mips_reboot_setup(void
@@ -223,6 +293,10 @@ static int __init mips_reboot_setup(void
if (!ltq_rcu_membase)
panic("Failed to remap core memory");
+ if (of_machine_is_compatible("lantiq,vr9"))
+ if (of_machine_is_compatible("lantiq,ar9") ||
+ of_machine_is_compatible("lantiq,vr9"))
+ ltq_usb_init();
+
_machine_restart = ltq_machine_restart;
......
......@@ -84,11 +84,12 @@
static int __init mips_reboot_setup(void)
{
struct resource res;
@@ -223,6 +293,9 @@ static int __init mips_reboot_setup(void
@@ -223,6 +293,10 @@ static int __init mips_reboot_setup(void
if (!ltq_rcu_membase)
panic("Failed to remap core memory");
+ if (of_machine_is_compatible("lantiq,vr9"))
+ if (of_machine_is_compatible("lantiq,ar9") ||
+ of_machine_is_compatible("lantiq,vr9"))
+ ltq_usb_init();
+
_machine_restart = ltq_machine_restart;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment