Files
external_libcamera/include/libcamera/internal/tracepoints/buffer_enums.tp
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
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)
)
)