perf evsel: Rename *perf_evsel__read*() to *evsel__read()
[linux-2.6-microblaze.git] / tools / perf / builtin-stat.c
index 6bc1336..e3629ca 100644 (file)
@@ -259,7 +259,7 @@ static int read_single_counter(struct evsel *counter, int cpu,
                count->val = val;
                return 0;
        }
-       return perf_evsel__read_counter(counter, cpu, thread);
+       return evsel__read_counter(counter, cpu, thread);
 }
 
 /*
@@ -284,7 +284,7 @@ static int read_counter_cpu(struct evsel *counter, struct timespec *rs, int cpu)
 
                /*
                 * The leader's group read loads data into its group members
-                * (via perf_evsel__read_counter()) and sets their count->loaded.
+                * (via evsel__read_counter()) and sets their count->loaded.
                 */
                if (!perf_counts__is_loaded(counter->counts, cpu, thread) &&
                    read_single_counter(counter, cpu, thread, rs)) {