diff options
author | John Crispin <john@openwrt.org> | 2015-09-14 20:07:23 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-09-14 20:07:23 +0000 |
commit | 1f4124ceb059bbdb7a490e16ae03288cb39f33ee (patch) | |
tree | 268136c695d8185b87a6681ecba7c1af52474453 /target/linux/lantiq/patches-3.18 | |
parent | fb3fb9b6c125ea8a4ce31d61b9e3f124d8d618eb (diff) | |
download | upstream-1f4124ceb059bbdb7a490e16ae03288cb39f33ee.tar.gz upstream-1f4124ceb059bbdb7a490e16ae03288cb39f33ee.tar.bz2 upstream-1f4124ceb059bbdb7a490e16ae03288cb39f33ee.zip |
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: Antti Seppälä <a.seppala@gmail.com>
SVN-Revision: 46913
Diffstat (limited to 'target/linux/lantiq/patches-3.18')
-rw-r--r-- | target/linux/lantiq/patches-3.18/0039-MIPS-lantiq-initialize-usb-on-boot.patch | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/lantiq/patches-3.18/0039-MIPS-lantiq-initialize-usb-on-boot.patch b/target/linux/lantiq/patches-3.18/0039-MIPS-lantiq-initialize-usb-on-boot.patch index 052e45e91b..fd0da8ed50 100644 --- a/target/linux/lantiq/patches-3.18/0039-MIPS-lantiq-initialize-usb-on-boot.patch +++ b/target/linux/lantiq/patches-3.18/0039-MIPS-lantiq-initialize-usb-on-boot.patch @@ -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; |