summaryrefslogtreecommitdiffstats
path: root/board/tqc/tqm85xx/sdram.c
diff options
context:
space:
mode:
authorAndy Fleming <afleming@freescale.com>2009-02-16 09:40:20 -0600
committerAndy Fleming <afleming@freescale.com>2009-02-16 18:06:03 -0600
commite0c4fac79d4d74572ddd43f75e7189cecca8d0ad (patch)
tree44e8d6b760f6c2e067c06fa812e3b0d5fc11f843 /board/tqc/tqm85xx/sdram.c
parentcf07a5baece0ecfc5284cfda8a4e68eaf92782f8 (diff)
downloadblackbird-obmc-uboot-e0c4fac79d4d74572ddd43f75e7189cecca8d0ad.tar.gz
blackbird-obmc-uboot-e0c4fac79d4d74572ddd43f75e7189cecca8d0ad.zip
TQM85xx: Fix a couple warnings in TQM8548 build
The ecm variable in sdram.c was being declared for all 8548, but only used by specific 8548 boards, so we make that variable require those specific boards, too The nand code was using an index "i" into a table, and then re-using "i" to set addresses for each upm. However, then it relied on the old value of i still being there to enable things. Changed the second "i" to "j" Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/tqc/tqm85xx/sdram.c')
-rw-r--r--board/tqc/tqm85xx/sdram.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/tqc/tqm85xx/sdram.c b/board/tqc/tqm85xx/sdram.c
index 2b3de4499b..6d73a88ab0 100644
--- a/board/tqc/tqm85xx/sdram.c
+++ b/board/tqc/tqm85xx/sdram.c
@@ -79,7 +79,9 @@ long int sdram_setup (int casl)
volatile ccsr_ddr_t *ddr = (void *)(CONFIG_SYS_MPC85xx_DDR_ADDR);
#ifdef CONFIG_TQM8548
volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
+#if defined(CONFIG_TQM8548_AG) || defined(CONFIG_TQM8548_BE)
volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
+#endif
#else /* !CONFIG_TQM8548 */
unsigned long cfg_ddr_timing1;
unsigned long cfg_ddr_mode;
OpenPOWER on IntegriCloud