diff options
author | Kumar Gala <galak@freescale.com> | 2005-06-22 15:10:02 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-22 13:23:38 -0700 |
commit | f1b04770b0d073a9d70e5b3b873d274c1c19e1f6 (patch) | |
tree | fc975ccebd712d1898871cdbcde10b6faeba4603 /arch/ppc | |
parent | fb7a0e36532bc231bea8adfb1dddc3961eb38940 (diff) | |
download | talos-op-linux-f1b04770b0d073a9d70e5b3b873d274c1c19e1f6.tar.gz talos-op-linux-f1b04770b0d073a9d70e5b3b873d274c1c19e1f6.zip |
[PATCH] ppc32: Fix building MPC8555 CDS
Adding support for MPC8548 w/o PCI support, broke building MPC8555 CDS
by trying to remove a loop variable that was used when PCI is enabled.
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org)
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/platforms/85xx/mpc85xx_cds_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c index 203b2ca61df8..b52c4317fefd 100644 --- a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c +++ b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c @@ -149,6 +149,7 @@ void __init mpc85xx_cds_init_IRQ(void) { bd_t *binfo = (bd_t *) __res; + int i; /* Determine the Physical Address of the OpenPIC regs */ phys_addr_t OpenPIC_PAddr = binfo->bi_immr_base + MPC85xx_OPENPIC_OFFSET; |