aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-12-17 08:20:28 -0500
committerIngo Molnar <mingo@elte.hu>2008-12-23 06:45:13 -0500
commit7671581f1666ef4b54a1c1e598c51ac44c060a9b (patch)
tree8b3e7536e89f2b01d232de0c53c3b297b85618ba /include/linux
parent862a1a5f346fe7e9181ea51eaae48cf2cd70f746 (diff)
perfcounters: hw ops rename
Impact: rename field names Shorten them. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/perf_counter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h
index 984da540224b..48f76d2e54c2 100644
--- a/include/linux/perf_counter.h
+++ b/include/linux/perf_counter.h
@@ -128,9 +128,9 @@ struct perf_counter;
128 * struct hw_perf_counter_ops - performance counter hw ops 128 * struct hw_perf_counter_ops - performance counter hw ops
129 */ 129 */
130struct hw_perf_counter_ops { 130struct hw_perf_counter_ops {
131 void (*hw_perf_counter_enable) (struct perf_counter *counter); 131 void (*enable) (struct perf_counter *counter);
132 void (*hw_perf_counter_disable) (struct perf_counter *counter); 132 void (*disable) (struct perf_counter *counter);
133 void (*hw_perf_counter_read) (struct perf_counter *counter); 133 void (*read) (struct perf_counter *counter);
134}; 134};
135 135
136/** 136/**