diff options
author | Jon Loeliger <jdl@freescale.com> | 2008-02-19 12:31:08 -0600 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2008-02-19 12:31:08 -0600 |
commit | 975a083a5ef785c414b35f9c5b8ae25b26b41524 (patch) | |
tree | fc8fd8337611036152041f1cb8498ec3213e5361 /board/freescale/mpc8610hpcd | |
parent | 13f5433f700d4da9f6fdf2a4bb80310133a7c170 (diff) | |
download | u-boot-imx-975a083a5ef785c414b35f9c5b8ae25b26b41524.zip u-boot-imx-975a083a5ef785c414b35f9c5b8ae25b26b41524.tar.gz u-boot-imx-975a083a5ef785c414b35f9c5b8ae25b26b41524.tar.bz2 |
8610HPCD: Fix typos in two PCI setup registers.
The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
were erroneously present as 85xx names and values, leftover from
the clone wars. Fix this by removing the 85xx cruft from the
86xx codebase.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/freescale/mpc8610hpcd')
-rw-r--r-- | board/freescale/mpc8610hpcd/mpc8610hpcd.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c index 264e959..d5a4f0e 100644 --- a/board/freescale/mpc8610hpcd/mpc8610hpcd.c +++ b/board/freescale/mpc8610hpcd/mpc8610hpcd.c @@ -280,13 +280,12 @@ void pci_init_board(void) volatile immap_t *immap = (immap_t *) CFG_CCSRBAR; volatile ccsr_gur_t *gur = &immap->im_gur; uint devdisr = gur->devdisr; - uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; - uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16; + uint io_sel = (gur->pordevsr & MPC86xx_PORDEVSR_IO_SEL) >> 19; + uint host_agent = (gur->porbmsr & MPC86xx_PORBMSR_HA) >> 16; printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n", devdisr, io_sel, host_agent); - #ifdef CONFIG_PCIE1 { volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCIE1_ADDR; |