perf script: Remove duplicated code and needless script_spec__findnew()
authorTaeung Song <treeze.taeung@gmail.com>
Thu, 25 Feb 2016 15:13:10 +0000 (00:13 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 25 Feb 2016 19:14:33 +0000 (16:14 -0300)
commit8560bae02a948876b26d1d86423cf5e0bb04a815
treed32a8c3cbd5c8c8a4e1bf3b46adbfd8e681ee8c3
parent8579aca3f9a8f890d6d94ccaed7cf5fd54a0c3bd
perf script: Remove duplicated code and needless script_spec__findnew()

script_spec_register() called two functions: script_spec__find() and
script_spec__findnew().  But this way script_spec__find() gets called
two times, directly and via script_spec__findnew().

So remove script_spec__findnew() and make script_spec_register() only
call once script_spec__find().

Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1456413190-12378-1-git-send-email-treeze.taeung@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-script.c