aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/python.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-13 10:11:05 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-12-13 10:11:05 +0100
commitc45479ecd0c21705ab078ceaba097bbb730a0541 (patch)
tree27f028f34c22f6e9cc12da23c429af68ab70cfac /tools/perf/util/python.c
parentMerge 5.16-rc4 into usb-next (diff)
parentLinux 5.16-rc5 (diff)
downloadlinux-c45479ecd0c21705ab078ceaba097bbb730a0541.tar.gz
linux-c45479ecd0c21705ab078ceaba097bbb730a0541.zip
Merge 5.16-rc5 into usb-next
We need the USB fixes in here as well. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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;