diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-06-20 15:26:09 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-12-07 17:02:46 -0500 |
commit | 9d6b204f93cfeb7ec5e6ec499aca43d2c1d6da3f (patch) | |
tree | 277dc8c624a8625e9b2c2c6c58907e03891a901d | |
parent | 2c048303d6fac960dc2deaeae764a3403aa97f3b (diff) |
USB: ehci-ath79: Add device_id entry for the AR933X SoCs
Also make the USB_EHCI_ATH79 selectable for the AR933X SoCs.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Cc: linux-mips@linux-mips.org
Cc: Kathy Giori <kgiori@qca.qualcomm.com>
Cc: "Luis R. Rodriguez" <rodrigue@qca.qualcomm.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: linux-usb@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/2529/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | drivers/usb/host/Kconfig | 2 | ||||
-rw-r--r-- | drivers/usb/host/ehci-ath79.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 060e0e2b1ae6..8b094b4f6531 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -210,7 +210,7 @@ config USB_CNS3XXX_EHCI | |||
210 | 210 | ||
211 | config USB_EHCI_ATH79 | 211 | config USB_EHCI_ATH79 |
212 | bool "EHCI support for AR7XXX/AR9XXX SoCs" | 212 | bool "EHCI support for AR7XXX/AR9XXX SoCs" |
213 | depends on USB_EHCI_HCD && (SOC_AR71XX || SOC_AR724X || SOC_AR913X) | 213 | depends on USB_EHCI_HCD && (SOC_AR71XX || SOC_AR724X || SOC_AR913X || SOC_AR933X) |
214 | select USB_EHCI_ROOT_HUB_TT | 214 | select USB_EHCI_ROOT_HUB_TT |
215 | default y | 215 | default y |
216 | ---help--- | 216 | ---help--- |
diff --git a/drivers/usb/host/ehci-ath79.c b/drivers/usb/host/ehci-ath79.c index afb6743cf094..f1424f9bc363 100644 --- a/drivers/usb/host/ehci-ath79.c +++ b/drivers/usb/host/ehci-ath79.c | |||
@@ -33,6 +33,10 @@ static const struct platform_device_id ehci_ath79_id_table[] = { | |||
33 | .driver_data = EHCI_ATH79_IP_V2, | 33 | .driver_data = EHCI_ATH79_IP_V2, |
34 | }, | 34 | }, |
35 | { | 35 | { |
36 | .name = "ar933x-ehci", | ||
37 | .driver_data = EHCI_ATH79_IP_V2, | ||
38 | }, | ||
39 | { | ||
36 | /* terminating entry */ | 40 | /* terminating entry */ |
37 | }, | 41 | }, |
38 | }; | 42 | }; |