diff options
| author | Ian Rogers <[email protected]> | 2023-10-12 17:56:42 +0000 |
|---|---|---|
| committer | Namhyung Kim <[email protected]> | 2023-10-17 19:40:50 +0000 |
| commit | 3a42f4c796ce45a6b1d14975401deb2c457ae79d (patch) | |
| tree | 4de547caaefef098a97ba4f039b9060eab70e3dd /tools/perf/util/python.c | |
| parent | perf arm-spe: Move PMU initialization from default config code (diff) | |
| download | kernel-3a42f4c796ce45a6b1d14975401deb2c457ae79d.tar.gz kernel-3a42f4c796ce45a6b1d14975401deb2c457ae79d.zip | |
perf pmu: Const-ify file APIs
File APIs don't alter the struct pmu so allow const ones to be passed.
Signed-off-by: Ian Rogers <[email protected]>
Reviewed-by: Adrian Hunter <[email protected]>
Cc: Ravi Bangoria <[email protected]>
Cc: James Clark <[email protected]>
Cc: Suzuki K Poulose <[email protected]>
Cc: Yang Jihong <[email protected]>
Cc: Will Deacon <[email protected]>
Cc: Leo Yan <[email protected]>
Cc: Mike Leach <[email protected]>
Cc: Jing Zhang <[email protected]>
Cc: Kajol Jain <[email protected]>
Cc: Thomas Richter <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: John Garry <[email protected]>
Cc: [email protected]
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Namhyung Kim <[email protected]>
Diffstat (limited to 'tools/perf/util/python.c')
| -rw-r--r-- | tools/perf/util/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c index c29f5f0bb552..8761f51b5c7c 100644 --- a/tools/perf/util/python.c +++ b/tools/perf/util/python.c @@ -98,7 +98,7 @@ struct perf_pmu *evsel__find_pmu(const struct evsel *evsel __maybe_unused) return NULL; } -int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt, ...) +int perf_pmu__scan_file(const struct perf_pmu *pmu, const char *name, const char *fmt, ...) { return EOF; } |
