summaryrefslogtreecommitdiffstats
path: root/include/linux/perf_counter.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-12-17 14:20:28 +0100
committerIngo Molnar <mingo@elte.hu>2008-12-23 12:45:13 +0100
commit7671581f1666ef4b54a1c1e598c51ac44c060a9b (patch)
tree8b3e7536e89f2b01d232de0c53c3b297b85618ba /include/linux/perf_counter.h
parent862a1a5f346fe7e9181ea51eaae48cf2cd70f746 (diff)
downloadlinux-stable-7671581f1666ef4b54a1c1e598c51ac44c060a9b.tar.gz
linux-stable-7671581f1666ef4b54a1c1e598c51ac44c060a9b.tar.bz2
linux-stable-7671581f1666ef4b54a1c1e598c51ac44c060a9b.zip
perfcounters: hw ops rename
Impact: rename field names Shorten them. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/perf_counter.h')
-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;
* struct hw_perf_counter_ops - performance counter hw ops
*/
struct hw_perf_counter_ops {
- void (*hw_perf_counter_enable) (struct perf_counter *counter);
- void (*hw_perf_counter_disable) (struct perf_counter *counter);
- void (*hw_perf_counter_read) (struct perf_counter *counter);
+ void (*enable) (struct perf_counter *counter);
+ void (*disable) (struct perf_counter *counter);
+ void (*read) (struct perf_counter *counter);
};
/**