aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/util/python.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <[email protected]>2021-12-13 10:11:05 +0100
committerGreg Kroah-Hartman <[email protected]>2021-12-13 10:11:05 +0100
commitc45479ecd0c21705ab078ceaba097bbb730a0541 (patch)
tree27f028f34c22f6e9cc12da23c429af68ab70cfac /tools/perf/util/python.c
parentd598c3c46ea69ea974f0613a651cd4ef3be0c870 (diff)
parent2585cf9dfaaddf00b069673f27bb3f8530e2039c (diff)
Merge 5.16-rc5 into usb-next
We need the USB fixes in here as well. Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/util/python.c')
-rw-r--r--tools/perf/util/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/python.c b/tools/perf/util/python.c
index 563a9ba8954f..7f782a31bda3 100644
--- a/tools/perf/util/python.c
+++ b/tools/perf/util/python.c
@@ -461,7 +461,7 @@ get_tracepoint_field(struct pyrf_event *pevent, PyObject *attr_name)
struct tep_event *tp_format;
tp_format = trace_event__tp_format_id(evsel->core.attr.config);
- if (!tp_format)
+ if (IS_ERR_OR_NULL(tp_format))
return NULL;
evsel->tp_format = tp_format;