diff options
author | Ian Rogers <[email protected]> | 2023-09-11 10:05:55 -0700 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2023-09-12 17:46:03 -0300 |
commit | dc2cfef9a9afe04a1b7683a999065b544d7b54f7 (patch) | |
tree | 06e01fcfdbc203139f6e159a9a1e13ac6468bf3a | |
parent | f5d98b8bdcd3c39b9ec3954573a7be1a5531215f (diff) |
perf parse-events: Remove unused header files
The fnmatch header is now used in the PMU matching logic in pmu.c.
Signed-off-by: Ian Rogers <[email protected]>
Acked-by: Namhyung Kim <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Gaosheng Cui <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: James Clark <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Rob Herring <[email protected]>
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/util/parse-events.y | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/perf/util/parse-events.y b/tools/perf/util/parse-events.y index bf74d6564eba..dcadf08f840a 100644 --- a/tools/perf/util/parse-events.y +++ b/tools/perf/util/parse-events.y @@ -9,11 +9,8 @@ #define YYDEBUG 1 #include <errno.h> -#include <fnmatch.h> -#include <stdio.h> #include <linux/compiler.h> #include <linux/types.h> -#include <linux/zalloc.h> #include "pmu.h" #include "pmus.h" #include "evsel.h" |