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>
17 lines
343 B
Plaintext
17 lines
343 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2020, Google Inc.
|
|
*
|
|
* buffer_enums.tp - Tracepoint definition for enums in the buffer class
|
|
*/
|
|
|
|
TRACEPOINT_ENUM(
|
|
libcamera,
|
|
buffer_status,
|
|
TP_ENUM_VALUES(
|
|
ctf_enum_value("FrameSuccess", 0)
|
|
ctf_enum_value("FrameError", 1)
|
|
ctf_enum_value("FrameCancelled", 2)
|
|
)
|
|
)
|