Cleanup: Move headers from toplevel to include/lttng/
[lttng-modules.git] / probes / lttng-probe-asoc.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
7c68b363 3 * probes/lttng-probe-asoc.c
b283666f
PW
4 *
5 * LTTng asoc probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
b283666f
PW
9 */
10
11#include <linux/module.h>
12#include <sound/jack.h>
13#include <sound/soc.h>
2df37e95 14#include <lttng/tracer.h>
b283666f
PW
15
16/*
17 * Create the tracepoint static inlines from the kernel to validate that our
18 * trace event macros match the kernel we run on.
19 */
20#include <trace/events/asoc.h>
21
22/*
23 * Create LTTng tracepoint probes.
24 */
25#define LTTNG_PACKAGE_BUILD
26#define CREATE_TRACE_POINTS
156a3977 27#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
b283666f 28
156a3977 29#include <instrumentation/events/lttng-module/asoc.h>
b283666f
PW
30
31MODULE_LICENSE("GPL and additional rights");
1c124020
MJ
32MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com>");
33MODULE_AUTHOR("Paul Woegerer <paul_woegerer@mentor.com>");
34MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
b283666f 35MODULE_DESCRIPTION("LTTng asoc probes");
13ab8b0a
MD
36MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
37 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
38 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
39 LTTNG_MODULES_EXTRAVERSION);
This page took 0.05894 seconds and 4 git commands to generate.