Add SPDX headers and copyright notices to the tracepoints definition files. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
33 lines
515 B
Plaintext
33 lines
515 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2020, Google Inc.
|
|
*
|
|
* pipeline.tp - Tracepoints for pipelines
|
|
*/
|
|
|
|
TRACEPOINT_EVENT(
|
|
libcamera,
|
|
ipa_call_begin,
|
|
TP_ARGS(
|
|
const char *, pipe,
|
|
const char *, func
|
|
),
|
|
TP_FIELDS(
|
|
ctf_string(pipeline_name, pipe)
|
|
ctf_string(function_name, func)
|
|
)
|
|
)
|
|
|
|
TRACEPOINT_EVENT(
|
|
libcamera,
|
|
ipa_call_end,
|
|
TP_ARGS(
|
|
const char *, pipe,
|
|
const char *, func
|
|
),
|
|
TP_FIELDS(
|
|
ctf_string(pipeline_name, pipe)
|
|
ctf_string(function_name, func)
|
|
)
|
|
)
|