diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2012-03-13 10:57:41 -0400 |
---|---|---|
committer | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2012-03-13 13:30:59 -0400 |
commit | 3429e91a661e1f383aecc86c6bbcf65afb15c892 (patch) | |
tree | ff3aa3ac0a8cb3ce8190511874a03ab2b13fc8ff /drivers/usb/host/Makefile | |
parent | fdaf8b3183d126d70f19e13c690c762c65b28a5d (diff) |
usb: host: xhci: add platform driver support
This adds a fairly simple xhci-platform driver support. Currently it is
used by the dwc3 driver for supporting host mode.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'drivers/usb/host/Makefile')
-rw-r--r-- | drivers/usb/host/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index 7ca290fcb07..0982bcc140b 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile | |||
@@ -15,6 +15,10 @@ xhci-hcd-y := xhci.o xhci-mem.o | |||
15 | xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o | 15 | xhci-hcd-y += xhci-ring.o xhci-hub.o xhci-dbg.o |
16 | xhci-hcd-$(CONFIG_PCI) += xhci-pci.o | 16 | xhci-hcd-$(CONFIG_PCI) += xhci-pci.o |
17 | 17 | ||
18 | ifneq ($(CONFIG_USB_XHCI_PLATFORM), ) | ||
19 | xhci-hcd-y += xhci-plat.o | ||
20 | endif | ||
21 | |||
18 | obj-$(CONFIG_USB_WHCI_HCD) += whci/ | 22 | obj-$(CONFIG_USB_WHCI_HCD) += whci/ |
19 | 23 | ||
20 | obj-$(CONFIG_PCI) += pci-quirks.o | 24 | obj-$(CONFIG_PCI) += pci-quirks.o |