From: Arnaldo Carvalho de Melo Date: Mon, 16 Dec 2013 19:57:43 +0000 (-0300) Subject: perf symbols: Remove needless static binary_type array X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=631d34b5626a8de828f3ab8da54013293097e678;p=~andy%2Flinux perf symbols: Remove needless static binary_type array There are no references to that array anywhere, it is only used to try a series of "binary" types in turn, always setting dso->data_type till one can be used. Cc: Adrian Hunter Cc: David Ahern Cc: Frederic Weisbecker Cc: Jiri Olsa Cc: Mike Galbraith Cc: Namhyung Kim Cc: Paul Mackerras Cc: Peter Zijlstra Cc: Stephane Eranian Link: http://lkml.kernel.org/n/tip-4mw7xrbs12tln6v2uthg7sqc@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c index 436922f1f9d..e7f4449088e 100644 --- a/tools/perf/util/dso.c +++ b/tools/perf/util/dso.c @@ -161,7 +161,7 @@ static int open_dso(struct dso *dso, struct machine *machine) int dso__data_fd(struct dso *dso, struct machine *machine) { - static enum dso_binary_type binary_type_data[] = { + enum dso_binary_type binary_type_data[] = { DSO_BINARY_TYPE__BUILD_ID_CACHE, DSO_BINARY_TYPE__SYSTEM_PATH_DSO, DSO_BINARY_TYPE__NOT_FOUND,