]> git.baikalelectronics.ru Git - kernel.git/commit
of: fix uninitialized variable warning for overlay test
authorArnd Bergmann <arnd@arndb.de>
Fri, 28 Apr 2017 09:44:11 +0000 (11:44 +0200)
committerRob Herring <robh@kernel.org>
Wed, 3 May 2017 12:10:33 +0000 (07:10 -0500)
commit2014c688ea05a2f6982967f0e41f6dbc53862204
tree41565bbce79765565bdd0a0ca936c3936ad47cd6
parenta83264a0a88f7d3264675bb9e2fa6825afedf6d8
of: fix uninitialized variable warning for overlay test

gcc warns that an empty device tree would cause undefined behavior:

drivers/of/unittest.c: In function 'of_unittest':
drivers/of/unittest.c:2199:25: warning: 'last_sibling' may be used uninitialized in this function [-Wmaybe-uninitialized]

This adds an initialization of the variable to zero, which we handle
correctly.

Fixes: 13bd87395b67 ("of: Add unit tests for applying overlays")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/unittest.c