To use the tracepoint in kernel module, add EXPORT_TRACE_SYMBOL_GPL to export the dwc3_ep_queue tracepoint. Bug: 181736013 Change-Id: I211e747e10d232342cbaf877d7ad670c60e3ad0f Signed-off-by: Oh Eomji <eomji.oh@samsung.com>
14 lines
315 B
C
14 lines
315 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_ep_queue);
|