summaryrefslogtreecommitdiff
path: root/drivers/usb/dwc3/Makefile
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2015-02-23 18:39:53 +0530
committerMarek Vasut <marex@denx.de>2015-04-14 05:48:09 +0200
commit9de1115de72106fb0e8dfbfe98f337a1c7a8dc11 (patch)
tree373aebe64cdc20b8cf1cc274a2af4e64a40af45e /drivers/usb/dwc3/Makefile
parent30c31d589784113bd50b1a55da0dc405aea43684 (diff)
downloadu-boot-imx-9de1115de72106fb0e8dfbfe98f337a1c7a8dc11.zip
u-boot-imx-9de1115de72106fb0e8dfbfe98f337a1c7a8dc11.tar.gz
u-boot-imx-9de1115de72106fb0e8dfbfe98f337a1c7a8dc11.tar.bz2
usb: dwc3: remove trace_* APIs from dwc3 driver
Removed most of the trace_* APIs from dwc3 driver since tracepoints are not supported in u-boot. Replaced some of the trace_* API with dev_dbg/dev/vdbg. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Review-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'drivers/usb/dwc3/Makefile')
-rw-r--r--drivers/usb/dwc3/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/dwc3/Makefile b/drivers/usb/dwc3/Makefile
index bb34fbc..afaa767 100644
--- a/drivers/usb/dwc3/Makefile
+++ b/drivers/usb/dwc3/Makefile
@@ -1,12 +1,9 @@
-# define_trace.h needs to know how to find our header
-CFLAGS_trace.o := -I$(src)
-
ccflags-$(CONFIG_USB_DWC3_DEBUG) := -DDEBUG
ccflags-$(CONFIG_USB_DWC3_VERBOSE) += -DVERBOSE_DEBUG
obj-$(CONFIG_USB_DWC3) += dwc3.o
-dwc3-y := core.o debug.o trace.o
+dwc3-y := core.o debug.o
ifneq ($(filter y,$(CONFIG_USB_DWC3_HOST) $(CONFIG_USB_DWC3_DUAL_ROLE)),)
dwc3-y += host.o