[POWERPC] 83xx: mpc832x_rdb: fix compiler warning
arch/powerpc/platforms/83xx/mpc832x_rdb.c: In function ‘mpc832x_rdb_setup_arch’: arch/powerpc/platforms/83xx/mpc832x_rdb.c:104: warning: ‘np’ is used uninitialized in this function Signed-off-by: Kim Phillips <kim.phillips@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
1347a2c1eb
commit
aafa195550
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ static void __init mpc832x_rdb_setup_arch(void)
|
||||||
#ifdef CONFIG_QUICC_ENGINE
|
#ifdef CONFIG_QUICC_ENGINE
|
||||||
qe_reset();
|
qe_reset();
|
||||||
|
|
||||||
if ((np = of_find_node_by_name(np, "par_io")) != NULL) {
|
if ((np = of_find_node_by_name(NULL, "par_io")) != NULL) {
|
||||||
par_io_init(np);
|
par_io_init(np);
|
||||||
of_node_put(np);
|
of_node_put(np);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue