There are two tracepoints in dwc3_readl() and dwc3_writel(). This patch will export the tracepoints so that vendor modules can use them. Bug: 184920962 Signed-off-by: Ray Chi <raychi@google.com> Change-Id: I1170d853be1fa1c47afbba133567b1996418d8e8
19 lines
535 B
C
19 lines
535 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* trace.c - DesignWare USB3 DRD Controller Trace Support
|
|
*
|
|
* Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com
|
|
*
|
|
* Author: Felipe Balbi <balbi@ti.com>
|
|
*/
|
|
|
|
#define CREATE_TRACE_POINTS
|
|
#include "trace.h"
|
|
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_event);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_ctrl_req);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_complete_trb);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_ep_queue);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_readl);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(dwc3_writel);
|