diff options
Diffstat (limited to 'tools/perf/util/dso.c')
-rw-r--r-- | tools/perf/util/dso.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c index 8803a69fc260..0d3667f92023 100644 --- a/tools/perf/util/dso.c +++ b/tools/perf/util/dso.c @@ -165,17 +165,6 @@ bool is_supported_compression(const char *ext) return false; } -bool is_kmodule_extension(const char *ext) -{ - if (strncmp(ext, "ko", 2)) - return false; - - if (ext[2] == '\0' || (ext[2] == '.' && is_supported_compression(ext+3))) - return true; - - return false; -} - bool is_kernel_module(const char *pathname) { struct kmod_path m; |