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/mpc8349emds/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/mpc8349emds/pci.c')
-rw-r--r-- | board/mpc8349emds/pci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/board/mpc8349emds/pci.c b/board/mpc8349emds/pci.c index 908be57..da49a5d 100644 --- a/board/mpc8349emds/pci.c +++ b/board/mpc8349emds/pci.c @@ -146,7 +146,7 @@ pci_init_board(void) u32 dev; 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; @@ -260,8 +260,8 @@ pci_init_board(void) hose->region_count = 4; pci_setup_indirect(hose, - (CFG_IMMRBAR+0x8300), - (CFG_IMMRBAR+0x8304)); + (CFG_IMMR+0x8300), + (CFG_IMMR+0x8304)); pci_register_hose(hose); @@ -356,8 +356,8 @@ pci_init_board(void) hose->region_count = 4; pci_setup_indirect(hose, - (CFG_IMMRBAR+0x8380), - (CFG_IMMRBAR+0x8384)); + (CFG_IMMR+0x8380), + (CFG_IMMR+0x8384)); pci_register_hose(hose); |