diff options
author | Jon Loeliger <jdl@freescale.com> | 2006-08-15 16:19:02 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-08-25 14:32:13 +1000 |
commit | 5dc599c206ad50e1b190edfbc98b7cf8ce361003 (patch) | |
tree | 39d959b30b002402ae23562755735e70589c9e36 /arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | |
parent | 054389f114fc55d525926b55e82b473b783a7d77 (diff) | |
download | blackbird-obmc-linux-5dc599c206ad50e1b190edfbc98b7cf8ce361003.tar.gz blackbird-obmc-linux-5dc599c206ad50e1b190edfbc98b7cf8ce361003.zip |
[POWERPC] Allow MPC8641 HPCN to build with CONFIG_PCI disabled too.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/86xx/mpc86xx_hpcn.c')
-rw-r--r-- | arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c index 146da3001c67..813eb5811eb4 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c @@ -52,6 +52,7 @@ unsigned long pci_dram_offset = 0; #endif +#ifdef CONFIG_PCI static void mpc86xx_8259_cascade(unsigned int irq, struct irq_desc *desc, struct pt_regs *regs) { @@ -60,14 +61,18 @@ static void mpc86xx_8259_cascade(unsigned int irq, struct irq_desc *desc, generic_handle_irq(cascade_irq, regs); desc->chip->eoi(irq); } +#endif /* CONFIG_PCI */ void __init mpc86xx_hpcn_init_irq(void) { struct mpic *mpic1; - struct device_node *np, *cascade_node = NULL; - int cascade_irq; + struct device_node *np; phys_addr_t openpic_paddr; +#ifdef CONFIG_PCI + struct device_node *cascade_node = NULL; + int cascade_irq; +#endif np = of_find_node_by_type(NULL, "open-pic"); if (np == NULL) |