Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1 | ccflags-$(CONFIG_USB_DWC3_DEBUG) := -DDEBUG |
| 2 | ccflags-$(CONFIG_USB_DWC3_VERBOSE) += -DVERBOSE_DEBUG |
| 3 | |
| 4 | obj-$(CONFIG_USB_DWC3) += dwc3.o |
| 5 | |
| 6 | dwc3-y := core.o |
Felipe Balbi | d07e881 | 2011-10-12 14:08:26 +0300 | [diff] [blame^] | 7 | dwc3-y += host.o |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 8 | |
| 9 | ifneq ($(CONFIG_USB_GADGET_DWC3),) |
| 10 | dwc3-y += gadget.o ep0.o |
| 11 | endif |
| 12 | |
Felipe Balbi | d07e881 | 2011-10-12 14:08:26 +0300 | [diff] [blame^] | 13 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 14 | ifneq ($(CONFIG_DEBUG_FS),) |
| 15 | dwc3-y += debugfs.o |
| 16 | endif |
| 17 | |
| 18 | ## |
| 19 | # Platform-specific glue layers go here |
| 20 | # |
| 21 | # NOTICE: Make sure your glue layer doesn't depend on anything |
| 22 | # which is arch-specific and that it compiles on all situations. |
| 23 | # |
| 24 | # We want to keep this requirement in order to be able to compile |
| 25 | # the entire driver (with all its glue layers) on several architectures |
| 26 | # and make sure it compiles fine. This will also help with allmodconfig |
| 27 | # and allyesconfig builds. |
| 28 | # |
| 29 | # The only exception is the PCI glue layer, but that's only because |
| 30 | # PCI doesn't provide nops if CONFIG_PCI isn't enabled. |
| 31 | ## |
| 32 | |
| 33 | obj-$(CONFIG_USB_DWC3) += dwc3-omap.o |
| 34 | |
| 35 | ifneq ($(CONFIG_PCI),) |
| 36 | obj-$(CONFIG_USB_DWC3) += dwc3-pci.o |
| 37 | endif |
| 38 | |