]> git.baikalelectronics.ru Git - kernel.git/commit
of: add helper to lookup compatible child node
authorJohan Hovold <johan@kernel.org>
Mon, 27 Aug 2018 08:21:45 +0000 (10:21 +0200)
committerRob Herring <robh@kernel.org>
Wed, 29 Aug 2018 13:06:46 +0000 (08:06 -0500)
commit851e714bb49ffd887da41c3984b95bf3a2773251
tree203d1e52a9e5a942a2b99ae0ecb984fa87453df8
parentf030a7bb7b1f7de16c1c716a587185e209e25800
of: add helper to lookup compatible child node

Add of_get_compatible_child() helper that can be used to lookup
compatible child nodes.

Several drivers currently use of_find_compatible_node() to lookup child
nodes while failing to notice that the of_find_ functions search the
entire tree depth-first (from a given start node) and therefore can
match unrelated nodes. The fact that these functions also drop a
reference to the node they start searching from (e.g. the parent node)
is typically also overlooked, something which can lead to use-after-free
bugs.

Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/base.c
include/linux/of.h