Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng-probe-regmap.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
b87700e3
AG
3 * probes/lttng-probe-regmap.c
4 *
5 * LTTng regmap probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
b87700e3
AG
9 */
10
11#include <linux/module.h>
12#include <linux/device.h>
2df37e95
MD
13#include <lttng/kernel-version.h>
14#include <lttng/tracer.h>
b87700e3
AG
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 */
17f1865d
MD
20#include <../../drivers/base/regmap/trace.h>
21
22#undef TRACE_INCLUDE_PATH
23#undef TRACE_INCLUDE_FILE
24
b87700e3
AG
25/*
26 * Create LTTng tracepoint probes.
27 */
28#define LTTNG_PACKAGE_BUILD
29#define CREATE_TRACE_POINTS
4f47ccf0 30#define TRACE_INCLUDE_PATH instrumentation/events
b87700e3 31
4f47ccf0 32#include <instrumentation/events/regmap.h>
b87700e3
AG
33
34MODULE_LICENSE("GPL and additional rights");
35MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
36MODULE_DESCRIPTION("LTTng regmap probes");
13ab8b0a
MD
37MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
38 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
39 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
40 LTTNG_MODULES_EXTRAVERSION);
This page took 0.036333 seconds and 4 git commands to generate.