aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/progress.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/ui/progress.h')
-rw-r--r--tools/perf/ui/progress.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/perf/ui/progress.h b/tools/perf/ui/progress.h
index 257cc224f9cf..d41bde5908a6 100644
--- a/tools/perf/ui/progress.h
+++ b/tools/perf/ui/progress.h
@@ -3,14 +3,12 @@
#include <../types.h>
-struct ui_progress {
+struct ui_progress_ops {
void (*update)(u64, u64, const char *);
void (*finish)(void);
};
-extern struct ui_progress *progress_fns;
-
-void ui_progress__init(void);
+extern struct ui_progress_ops *ui_progress__ops;
void ui_progress__update(u64 curr, u64 total, const char *title);
void ui_progress__finish(void);