diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-11-27 23:25:02 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-12-11 22:34:19 -0600 |
commit | f59b55a5b8fcadaa99781ba48e7a38e956afa527 (patch) | |
tree | 6760b9b27fea80ab62af85758bfd18c902fa4760 /cpu/mpc85xx/pci.c | |
parent | 50c03c8cf494d91cdec39670d95337c743e16ec9 (diff) | |
download | u-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.zip u-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.tar.gz u-boot-imx-f59b55a5b8fcadaa99781ba48e7a38e956afa527.tar.bz2 |
Stop using immap_t for guts offset on 85xx
In the future the offsets to various blocks may not be in same location.
Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
instead of getting it via &immap->im_gur.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/pci.c')
-rw-r--r-- | cpu/mpc85xx/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/pci.c b/cpu/mpc85xx/pci.c index db09e45..35e96d9 100644 --- a/cpu/mpc85xx/pci.c +++ b/cpu/mpc85xx/pci.c @@ -48,7 +48,7 @@ pci_mpc85xx_init(struct pci_controller *board_hose) #ifdef CONFIG_MPC85XX_PCI2 volatile ccsr_pcix_t *pcix2 = &immap->im_pcix2; #endif - volatile ccsr_gur_t *gur = &immap->im_gur; + volatile ccsr_gur_t *gur = (void *)(CFG_MPC85xx_GUTS_ADDR); struct pci_controller * hose; pci_hose = board_hose; |