1
0
Fork 0

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: 81d0848fc8 ("of: Add unit tests for applying overlays")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Rob Herring <robh@kernel.org>
hifive-unleashed-5.1
Arnd Bergmann 2017-04-28 11:44:11 +02:00 committed by Rob Herring
parent 5d4dd65b1e
commit ee320b33b4
1 changed files with 1 additions and 1 deletions

View File

@ -2192,7 +2192,7 @@ static __init void of_unittest_overlay_high_level(void)
mutex_lock(&of_mutex);
for (np = of_root->child; np; np = np->sibling)
for (last_sibling = np = of_root->child; np; np = np->sibling)
last_sibling = np;
if (last_sibling)