diff options
author | Sebastian Siewior <bigeasy@linutronix.de> | 2008-04-23 18:37:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-05-02 13:25:50 -0400 |
commit | db11e47dd7b09b7f76c7eaa236277f23391331e7 (patch) | |
tree | 56f2d03ddc18369128cb33b823ebc918af459985 /drivers/usb/host/Makefile | |
parent | 886c35fbcf6fb2eee15687efc2d64d99b6ad9a4a (diff) |
USB: ISP1760 HCD driver
This driver has been written from scratch and supports the ISP1760. ISP1761
might (should) work as well but the OTG isn't supported. Also ISO packets are
not. However, it works on my little PowerPC board.
Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/Makefile')
-rw-r--r-- | drivers/usb/host/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index bb8e9d44f371..f1edda2dcfde 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile | |||
@@ -6,6 +6,8 @@ ifeq ($(CONFIG_USB_DEBUG),y) | |||
6 | EXTRA_CFLAGS += -DDEBUG | 6 | EXTRA_CFLAGS += -DDEBUG |
7 | endif | 7 | endif |
8 | 8 | ||
9 | isp1760-objs := isp1760-hcd.o isp1760-if.o | ||
10 | |||
9 | obj-$(CONFIG_PCI) += pci-quirks.o | 11 | obj-$(CONFIG_PCI) += pci-quirks.o |
10 | 12 | ||
11 | obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o | 13 | obj-$(CONFIG_USB_EHCI_HCD) += ehci-hcd.o |
@@ -16,4 +18,4 @@ obj-$(CONFIG_USB_SL811_HCD) += sl811-hcd.o | |||
16 | obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o | 18 | obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o |
17 | obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o | 19 | obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o |
18 | obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o | 20 | obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o |
19 | 21 | obj-$(CONFIG_USB_ISP1760_HCD) += isp1760.o | |