Commit 4c62244e authored by Adrian Hunter's avatar Adrian Hunter Committed by Arnaldo Carvalho de Melo

perf scripting python: Remove unnecessary 'static'

The variables are always assigned before use, making the 'static'
storage class unnecessary.
Signed-off-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/r/20210530192308.7382-2-adrian.hunter@intel.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 6ea68838
......@@ -22,7 +22,7 @@ PyMODINIT_FUNC PyInit_perf_trace_context(void);
static PyObject *perf_trace_context_common_pc(PyObject *obj, PyObject *args)
{
static struct scripting_context *scripting_context;
struct scripting_context *scripting_context;
PyObject *context;
int retval;
......@@ -38,7 +38,7 @@ static PyObject *perf_trace_context_common_pc(PyObject *obj, PyObject *args)
static PyObject *perf_trace_context_common_flags(PyObject *obj,
PyObject *args)
{
static struct scripting_context *scripting_context;
struct scripting_context *scripting_context;
PyObject *context;
int retval;
......@@ -54,7 +54,7 @@ static PyObject *perf_trace_context_common_flags(PyObject *obj,
static PyObject *perf_trace_context_common_lock_depth(PyObject *obj,
PyObject *args)
{
static struct scripting_context *scripting_context;
struct scripting_context *scripting_context;
PyObject *context;
int retval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment