diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-10-05 11:07:49 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-10-05 11:07:49 +0000 |
commit | 6bfeb815486de741db535b4c93b5d7f9aeb2b3c5 (patch) | |
tree | bae2ae6fa978380296314c293f739989f470d561 /target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch | |
parent | eed889b77b94c7d0a22a5d2e3fc3f2956386f5b9 (diff) | |
download | upstream-6bfeb815486de741db535b4c93b5d7f9aeb2b3c5.tar.gz upstream-6bfeb815486de741db535b4c93b5d7f9aeb2b3c5.tar.bz2 upstream-6bfeb815486de741db535b4c93b5d7f9aeb2b3c5.zip |
experimental support for 2.6.27
SVN-Revision: 12863
Diffstat (limited to 'target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch')
-rw-r--r-- | target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch b/target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch new file mode 100644 index 0000000000..ae85e6468d --- /dev/null +++ b/target/linux/adm5120/patches-2.6.27/005-adm5120_usb.patch @@ -0,0 +1,33 @@ +--- a/drivers/usb/host/Kconfig ++++ b/drivers/usb/host/Kconfig +@@ -4,6 +4,10 @@ + comment "USB Host Controller Drivers" + depends on USB + ++config USB_ADM5120_HCD ++ tristate "ADM5120 HCD support (EXPERIMENTAL)" ++ depends on USB && ADM5120 && EXPERIMENTAL ++ + config USB_C67X00_HCD + tristate "Cypress C67x00 HCD support" + depends on USB +--- a/drivers/usb/host/Makefile ++++ b/drivers/usb/host/Makefile +@@ -10,6 +10,7 @@ + + obj-$(CONFIG_PCI) += pci-quirks.o + ++obj-$(CONFIG_USB_ADM5120_HCD) += adm5120-hcd.o + obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o + obj-$(CONFIG_USB_ISP116X_HCD) += isp116x-hcd.o + obj-$(CONFIG_USB_OHCI_HCD) += ohci-hcd.o +--- a/drivers/usb/Makefile ++++ b/drivers/usb/Makefile +@@ -16,6 +16,7 @@ + obj-$(CONFIG_USB_SL811_HCD) += host/ + obj-$(CONFIG_USB_U132_HCD) += host/ + obj-$(CONFIG_USB_R8A66597_HCD) += host/ ++obj-$(CONFIG_USB_ADM5120_HCD) += host/ + + obj-$(CONFIG_USB_C67X00_HCD) += c67x00/ + |