aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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/**