ASoC: imx: remove superfluous code in imx-ssi.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / trace / events / regulator.h
blob37502a7404b71b5dd7362f02149c852e24316427
1 #undef TRACE_SYSTEM
2 #define TRACE_SYSTEM regulator
4 #if !defined(_TRACE_REGULATOR_H) || defined(TRACE_HEADER_MULTI_READ)
5 #define _TRACE_REGULATOR_H
7 #include <linux/ktime.h>
8 #include <linux/tracepoint.h>
11 * Events which just log themselves and the regulator name for enable/disable
12 * type tracking.
14 DECLARE_EVENT_CLASS(regulator_basic,
16 TP_PROTO(const char *name),
18 TP_ARGS(name),
20 TP_STRUCT__entry(
21 __string( name, name )
24 TP_fast_assign(
25 __assign_str(name, name);
28 TP_printk("name=%s", __get_str(name))
32 DEFINE_EVENT(regulator_basic, regulator_enable,
34 TP_PROTO(const char *name),
36 TP_ARGS(name)
40 DEFINE_EVENT(regulator_basic, regulator_enable_delay,
42 TP_PROTO(const char *name),
44 TP_ARGS(name)
48 DEFINE_EVENT(regulator_basic, regulator_enable_complete,
50 TP_PROTO(const char *name),
52 TP_ARGS(name)
56 DEFINE_EVENT(regulator_basic, regulator_disable,
58 TP_PROTO(const char *name),
60 TP_ARGS(name)
64 DEFINE_EVENT(regulator_basic, regulator_disable_complete,
66 TP_PROTO(const char *name),
68 TP_ARGS(name)
73 * Events that take a range of numerical values, mostly for voltages
74 * and so on.
76 DECLARE_EVENT_CLASS(regulator_range,
78 TP_PROTO(const char *name, int min, int max),
80 TP_ARGS(name, min, max),
82 TP_STRUCT__entry(
83 __string( name, name )
84 __field( int, min )
85 __field( int, max )
88 TP_fast_assign(
89 __assign_str(name, name);
90 __entry->min = min;
91 __entry->max = max;
94 TP_printk("name=%s (%d-%d)", __get_str(name),
95 (int)__entry->min, (int)__entry->max)
98 DEFINE_EVENT(regulator_range, regulator_set_voltage,
100 TP_PROTO(const char *name, int min, int max),
102 TP_ARGS(name, min, max)
108 * Events that take a single value, mostly for readback and refcounts.
110 DECLARE_EVENT_CLASS(regulator_value,
112 TP_PROTO(const char *name, unsigned int val),
114 TP_ARGS(name, val),
116 TP_STRUCT__entry(
117 __string( name, name )
118 __field( unsigned int, val )
121 TP_fast_assign(
122 __assign_str(name, name);
123 __entry->val = val;
126 TP_printk("name=%s, val=%u", __get_str(name),
127 (int)__entry->val)
130 DEFINE_EVENT(regulator_value, regulator_set_voltage_complete,
132 TP_PROTO(const char *name, unsigned int value),
134 TP_ARGS(name, value)
138 #endif /* _TRACE_POWER_H */
140 /* This part must be outside protection */
141 #include <trace/define_trace.h>