struct evsel *evsel;
        int err;
 
-       if (!perf_evlist__can_select_event(evlist, sched_switch))
+       if (!evlist__can_select_event(evlist, sched_switch))
                return -EPERM;
 
        err = parse_events(evlist, sched_switch, NULL);
 
        cycles_evsel = evlist__last(evlist);
 
        /* Third event */
-       if (!perf_evlist__can_select_event(evlist, sched_switch)) {
+       if (!evlist__can_select_event(evlist, sched_switch)) {
                pr_debug("No sched_switch\n");
                err = 0;
                goto out;
 
                                continue;
                        pos = menu->selection;
 browse_hists:
-                       perf_evlist__set_selected(evlist, pos);
+                       evlist__set_selected(evlist, pos);
                        /*
                         * Give the calling tool a chance to populate the non
                         * default evsel resorted hists tree.
 
        return first->core.attr.sample_id_all;
 }
 
-void perf_evlist__set_selected(struct evlist *evlist,
-                              struct evsel *evsel)
+void evlist__set_selected(struct evlist *evlist, struct evsel *evsel)
 {
        evlist->selected = evsel;
 }
 
 
 int evlist__enable_event_idx(struct evlist *evlist, struct evsel *evsel, int idx);
 
-void perf_evlist__set_selected(struct evlist *evlist,
-                              struct evsel *evsel);
+void evlist__set_selected(struct evlist *evlist, struct evsel *evsel);
 
 int evlist__create_maps(struct evlist *evlist, struct target *target);
 int evlist__apply_filters(struct evlist *evlist, struct evsel **err_evsel);
 int evlist__strerror_open(struct evlist *evlist, int err, char *buf, size_t size);
 int evlist__strerror_mmap(struct evlist *evlist, int err, char *buf, size_t size);
 
-bool perf_evlist__can_select_event(struct evlist *evlist, const char *str);
+bool evlist__can_select_event(struct evlist *evlist, const char *str);
 void evlist__to_front(struct evlist *evlist, struct evsel *move_evsel);
 
 /**
 
        return record_opts__config_freq(opts);
 }
 
-bool perf_evlist__can_select_event(struct evlist *evlist, const char *str)
+bool evlist__can_select_event(struct evlist *evlist, const char *str)
 {
        struct evlist *temp_evlist;
        struct evsel *evsel;