diff options
author | Jon Loeliger <jdl@jdl.com> | 2007-02-16 22:17:41 (GMT) |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-02-17 00:17:00 (GMT) |
commit | 00e402d06609d3722b018d696c12cb668065988d (patch) | |
tree | b52c39987b68f1cb9281e11143b3060481cdbec0 | |
parent | a32525449b30dfbae804f6b05cde041f35f5a811 (diff) | |
download | linux-00e402d06609d3722b018d696c12cb668065988d.tar.xz |
[POWERPC] 86xx: Add missing of_node_put() in mpc86xx_hpcn_init_irq().
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c index f4dd5f2..7e237eb 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c @@ -120,6 +120,8 @@ mpc86xx_hpcn_init_irq(void) DBG("mpc86xxhpcn: cascade mapped to irq %d\n", cascade_irq); i8259_init(cascade_node, 0); + of_node_put(cascade_node); + set_irq_chained_handler(cascade_irq, mpc86xx_8259_cascade); #endif } |