summaryrefslogtreecommitdiffstats
path: root/board/stxssa
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2007-11-29 02:10:09 -0600
committerKumar Gala <galak@kernel.crashing.org>2007-12-11 22:34:20 -0600
commit04db400892da37b76a585e332a0c137954ad2015 (patch)
tree201c757a3032f786588d94c0fde8469a865b40b5 /board/stxssa
parent2714223f8e04ab3e4133ff65872eef366d90bfea (diff)
downloadblackbird-obmc-uboot-04db400892da37b76a585e332a0c137954ad2015.tar.gz
blackbird-obmc-uboot-04db400892da37b76a585e332a0c137954ad2015.zip
Stop using immap_t on 85xx
In the future the offsets to various blocks may not be in same location. Move to using CFG_MPC85xx_*_ADDR as the base of the registers instead of getting it via &immap. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/stxssa')
-rw-r--r--board/stxssa/stxssa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/stxssa/stxssa.c b/board/stxssa/stxssa.c
index 253fb2b28f..e2b38a6205 100644
--- a/board/stxssa/stxssa.c
+++ b/board/stxssa/stxssa.c
@@ -252,8 +252,7 @@ int
board_early_init_f(void)
{
#if defined(CONFIG_PCI)
- volatile immap_t *immr = (immap_t *)CFG_IMMR;
- volatile ccsr_pcix_t *pci = &immr->im_pcix;
+ volatile ccsr_pcix_t *pci = (void *)(CFG_MPC85xx_PCIX_ADDR);
pci->peer &= 0xffffffdf; /* disable master abort */
#endif
OpenPOWER on IntegriCloud