tegrakernel/kernel/kernel-4.9/include/trace/events/touchscreen_raydium.h

49 lines
1.4 KiB
C
Raw Normal View History

2022-02-16 09:13:02 -06:00
/*
* include/trace/events/touchscreen_raydium.h
*
* Raydium touchscreen event logging to ftrace.
*
* Copyright (c) 2013, NVIDIA Corporation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#undef TRACE_SYSTEM
#define TRACE_SYSTEM touchscreen_raydium
#if !defined(_TRACE_TOUCHSCREEN_RAYDIUM_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_TOUCHSCREEN_RAYDIUM_H
#include <linux/ktime.h>
#include <linux/tracepoint.h>
TRACE_EVENT(touchscreen_raydium_irq,
TP_PROTO(const char *name),
TP_ARGS(name),
TP_STRUCT__entry(
__field(const char *, name)
),
TP_fast_assign(
__entry->name = name;
),
TP_printk("name=%s",
__entry->name)
);
#endif /* _TRACE_TOUCHSCREEN_RAYDIUM_H */
/* This part must be outside protection */
#include <trace/define_trace.h>