Cleanup: move to kernel style SPDX license identifiers
[lttng-modules.git] / probes / lttng-probe-v4l2.c
CommitLineData
9f36eaed
MJ
1/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
e09a6084
WF
3 * probes/lttng-probe-v4l2.c
4 *
5 * LTTng v4l2 probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012,2013 Mentor Graphics Corp.
e09a6084
WF
9 */
10
11#include <linux/module.h>
12#include <linux/videodev2.h>
4949b0e6 13#include <media/videobuf2-core.h>
156a3977 14#include <lttng-tracer.h>
e09a6084
WF
15/*
16 * Create the tracepoint static inlines from the kernel to validate that our
17 * trace event macros match the kernel we run on.
18 */
19#include <trace/events/v4l2.h>
20
21/*
22 * Create LTTng tracepoint probes.
23 */
24#define LTTNG_PACKAGE_BUILD
25#define CREATE_TRACE_POINTS
156a3977 26#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
e09a6084 27
156a3977 28#include <instrumentation/events/lttng-module/v4l2.h>
e09a6084
WF
29
30MODULE_LICENSE("GPL and additional rights");
31MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com>");
32MODULE_DESCRIPTION("LTTng v4l2 probes");
c43be2e3
MD
33MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
34 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
35 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
36 LTTNG_MODULES_EXTRAVERSION);
This page took 0.03099 seconds and 4 git commands to generate.