Files
Paul Elder af2e36fc1b tracepoints: Add SPDX headers and copyright notices
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>
2020-11-05 11:57:29 +09:00

17 lines
355 B
Plaintext

/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* Copyright (C) 2020, Google Inc.
*
* request_enums.tp - Tracepoint definition for enums in the request class
*/
TRACEPOINT_ENUM(
libcamera,
request_status,
TP_ENUM_VALUES(
ctf_enum_value("RequestPending", 0)
ctf_enum_value("RequestComplete", 1)
ctf_enum_value("RequestCancelled", 2)
)
)