diff options
author | Timur Tabi <timur@freescale.com> | 2006-11-03 12:00:28 -0600 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2006-11-03 19:42:23 -0600 |
commit | d239d74b1c937984bc519083a8e7de373a390f06 (patch) | |
tree | 1311b60e3d00017bbe694570128d08e9699a2a24 /board/tqm834x/pci.c | |
parent | f7fb2e703ec9688541416962724adff70a7322cb (diff) | |
download | u-boot-imx-d239d74b1c937984bc519083a8e7de373a390f06.zip u-boot-imx-d239d74b1c937984bc519083a8e7de373a390f06.tar.gz u-boot-imx-d239d74b1c937984bc519083a8e7de373a390f06.tar.bz2 |
mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
tree matches the other 8xxx trees.
Signed-off-by: Timur Tabi <timur@freescale.com>
Diffstat (limited to 'board/tqm834x/pci.c')
-rw-r--r-- | board/tqm834x/pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/tqm834x/pci.c b/board/tqm834x/pci.c index d01277f..d896f17 100644 --- a/board/tqm834x/pci.c +++ b/board/tqm834x/pci.c @@ -78,7 +78,7 @@ pci_init_board(void) u32 reg32; struct pci_controller * hose; - immr = (immap_t *)CFG_IMMRBAR; + immr = (immap_t *)CFG_IMMR; clk = (clk83xx_t *)&immr->clk; pci_law = immr->sysconf.pcilaw; pci_pot = immr->ios.pot; @@ -186,8 +186,8 @@ pci_init_board(void) hose->region_count = 3; pci_setup_indirect(hose, - (CFG_IMMRBAR+0x8300), - (CFG_IMMRBAR+0x8304)); + (CFG_IMMR+0x8300), + (CFG_IMMR+0x8304)); pci_register_hose(hose); |