aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts
diff options
context:
space:
mode:
authorGuenter Roeck <[email protected]>2021-05-10 18:25:19 -0700
committerGreg Kroah-Hartman <[email protected]>2021-05-13 20:58:57 +0200
commit7912146abf6705c771b28ea5b6d608ee2ea39dcd (patch)
tree41fd405f0a2b5ce097f724a042b534984ef43c71 /tools/perf/scripts
parent7985723d21a15d4a237efa89e85c938875a3f9c3 (diff)
tty: hvc_iucv: Drop unnecessary NULL check after container_of
The result of container_of() operations is never NULL unless the extracted element is the first element of the embedded structure. This is not the case here. The NULL check is therefore unnecessary and misleading. Remove it. This change was made automatically with the following Coccinelle script. @@ type t; identifier v; statement s; @@ <+... ( t v = container_of(...); | v = container_of(...); ) ... when != v - if (\( !v \| v == NULL \) ) s ...+> Signed-off-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts')
0 files changed, 0 insertions, 0 deletions