mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 01:16:34 +07:00
fdda0a6adc
Add an of_node_put when a tested device node is not available.
The semantic patch that fixes this problem is as follows
(http://coccinelle.lip6.fr):
// <smpl>
@@
identifier f;
local idexpression e;
expression x;
@@
e = f(...);
... when != of_node_put(e)
when != x = e
when != e = x
when any
if (<+...of_device_is_available(e)...+>) {
... when != of_node_put(e)
(
return e;
|
+ of_node_put(e);
return ...;
)
}
// </smpl>
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
meson-canvas.c | ||
meson-clk-measure.c | ||
meson-gx-pwrc-vpu.c | ||
meson-gx-socinfo.c | ||
meson-mx-socinfo.c |