mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
12f2639038
gpio tracing was made configurable in 4.4-rc1 (commit ddd70280bf
("tracing: gpio: Add Kconfig option for enabling/disabling trace
events")). Since then it is the only event type that can be compiled
conditionally. Given that there is only little overhead I don't
understand the reasoning and I was annoyed more than once that gpio
events were not available without recompiling.
So drop the Kconfig symbol and make gpio events available
unconditionally.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
58 lines
1.1 KiB
C
58 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#undef TRACE_SYSTEM
|
|
#define TRACE_SYSTEM gpio
|
|
|
|
#if !defined(_TRACE_GPIO_H) || defined(TRACE_HEADER_MULTI_READ)
|
|
#define _TRACE_GPIO_H
|
|
|
|
#include <linux/tracepoint.h>
|
|
|
|
TRACE_EVENT(gpio_direction,
|
|
|
|
TP_PROTO(unsigned gpio, int in, int err),
|
|
|
|
TP_ARGS(gpio, in, err),
|
|
|
|
TP_STRUCT__entry(
|
|
__field(unsigned, gpio)
|
|
__field(int, in)
|
|
__field(int, err)
|
|
),
|
|
|
|
TP_fast_assign(
|
|
__entry->gpio = gpio;
|
|
__entry->in = in;
|
|
__entry->err = err;
|
|
),
|
|
|
|
TP_printk("%u %3s (%d)", __entry->gpio,
|
|
__entry->in ? "in" : "out", __entry->err)
|
|
);
|
|
|
|
TRACE_EVENT(gpio_value,
|
|
|
|
TP_PROTO(unsigned gpio, int get, int value),
|
|
|
|
TP_ARGS(gpio, get, value),
|
|
|
|
TP_STRUCT__entry(
|
|
__field(unsigned, gpio)
|
|
__field(int, get)
|
|
__field(int, value)
|
|
),
|
|
|
|
TP_fast_assign(
|
|
__entry->gpio = gpio;
|
|
__entry->get = get;
|
|
__entry->value = value;
|
|
),
|
|
|
|
TP_printk("%u %3s %d", __entry->gpio,
|
|
__entry->get ? "get" : "set", __entry->value)
|
|
);
|
|
|
|
#endif /* if !defined(_TRACE_GPIO_H) || defined(TRACE_HEADER_MULTI_READ) */
|
|
|
|
/* This part must be outside protection */
|
|
#include <trace/define_trace.h>
|