diff options
author | John Crispin <blogic@openwrt.org> | 2012-07-24 20:38:08 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-07-24 20:38:08 +0000 |
commit | c5ec28deae83b3049f89945d58ebccc715c4201a (patch) | |
tree | d20b50d473f33c1efd7a58a830f26347d1b76f36 /target/linux/ramips | |
parent | cd51bb77472423e5fe83ba050503c1f00f7dc557 (diff) | |
download | master-187ad058-c5ec28deae83b3049f89945d58ebccc715c4201a.tar.gz master-187ad058-c5ec28deae83b3049f89945d58ebccc715c4201a.tar.bz2 master-187ad058-c5ec28deae83b3049f89945d58ebccc715c4201a.zip |
[ramips] enable OHCI/EHCI glue on Rt305x, so it is available for Rt3352F.
Hope that this works, didn't have a chance to actually test it...
Signed-off-by: Daniel Golle <dgolle@allnet.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32815 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips')
3 files changed, 4 insertions, 2 deletions
diff --git a/target/linux/ramips/files/arch/mips/ralink/Kconfig b/target/linux/ramips/files/arch/mips/ralink/Kconfig index b594881fc6..444a88ae93 100644 --- a/target/linux/ramips/files/arch/mips/ralink/Kconfig +++ b/target/linux/ramips/files/arch/mips/ralink/Kconfig @@ -52,6 +52,8 @@ config SOC_RT305X select SYS_HAS_EARLY_PRINTK select MIPS_MACHINE select USB_ARCH_HAS_HCD + select USB_ARCH_HAS_OHCI + select USB_ARCH_HAS_EHCI config SOC_RT3883 bool diff --git a/target/linux/ramips/patches-3.3/200-rt3883-ehci-glue.patch b/target/linux/ramips/patches-3.3/200-rt3883-ehci-glue.patch index 636b6b2103..7fbcc94b0f 100644 --- a/target/linux/ramips/patches-3.3/200-rt3883-ehci-glue.patch +++ b/target/linux/ramips/patches-3.3/200-rt3883-ehci-glue.patch @@ -6,7 +6,7 @@ +config USB_EHCI_RT3883 + bool "EHCI support for Ralink RT3662/RT3883 SoCs" -+ depends on USB_EHCI_HCD && SOC_RT3883 ++ depends on USB_EHCI_HCD && ( SOC_RT3883 || SOC_RT305X ) + select USB_EHCI_ROOT_HUB_TT + default y + ---help--- diff --git a/target/linux/ramips/patches-3.3/201-rt3883-ohci-glue.patch b/target/linux/ramips/patches-3.3/201-rt3883-ohci-glue.patch index 983e4f97e2..ba1aa58516 100644 --- a/target/linux/ramips/patches-3.3/201-rt3883-ohci-glue.patch +++ b/target/linux/ramips/patches-3.3/201-rt3883-ohci-glue.patch @@ -6,7 +6,7 @@ +config USB_OHCI_RT3883 + bool "USB OHCI support for the Ralink RT3883 SoCs" -+ depends on USB_OHCI_HCD && SOC_RT3883 ++ depends on USB_OHCI_HCD && ( SOC_RT3883 || SOC_RT305X ) + default y + help + Enables support for the built-in OHCI controller present on the |