diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-10-12 23:43:14 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-12-29 12:06:30 +0300 |
commit | 9dec58e6c4d44175eaab64308c1bc27a2b5cb555 (patch) | |
tree | 4d6ee486ec7610663ff5ff0667b470e34a684a41 /include/sound/wm8960.h | |
parent | 0bcfdba6c0b76f5aabd55993a8a6fdf87a6ae3e1 (diff) | |
download | linux-9dec58e6c4d44175eaab64308c1bc27a2b5cb555.tar.xz |
video: omapdss: delete unneeded of_node_put
Device node iterators perform an of_node_put on each iteration, so putting
an of_node_put before a continue results in a double put.
A simplified version of the semantic match that finds this problem is as
follows (http://coccinelle.lip6.fr):
// <smpl>
@@
expression root,e;
local idexpression child;
iterator i;
@@
i(..., child, ...) {
... when != of_node_get(child)
* of_node_put(child);
...
* continue;
}
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/sound/wm8960.h')
0 files changed, 0 insertions, 0 deletions