-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 251970 b: refs/heads/master c: 3f397c2 h: refs/heads/master v: v3
- Loading branch information
Uwe Kleine-König
authored and
Grant Likely
committed
May 20, 2011
1 parent
5ab4f84
commit 9607e6e
Showing
3 changed files
with
73 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cc300d9ead66235e23c674babb8a4ae4ad4c9db8 | ||
refs/heads/master: 3f397c2144e46d9127662fdb6314f21960d8563d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#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> |