summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2006-06-28 10:46:35 -0500
committerJon Loeliger <jdl@freescale.com>2006-08-09 13:51:00 -0500
commitb6c5e1373b6ea0bb37a18e4aeecec00613d1cd39 (patch)
treeff219408e2adc7943097f0a7152c50dc9d98f4e3 /board
parentbf1dfffd8c26f8ecdd630a0ae4c834e751e4e452 (diff)
downloadbarebox-b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39.tar.gz
barebox-b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39.tar.xz
* Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board')
-rw-r--r--board/cds/mpc8555cds/mpc8555cds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/cds/mpc8555cds/mpc8555cds.c b/board/cds/mpc8555cds/mpc8555cds.c
index e15bf8f2ca..012181c31d 100644
--- a/board/cds/mpc8555cds/mpc8555cds.c
+++ b/board/cds/mpc8555cds/mpc8555cds.c
@@ -497,8 +497,8 @@ void
pci_init_board(void)
{
#ifdef CONFIG_PCI
- extern void pci_mpc85xx_init(struct pci_controller **hose);
+ extern void pci_mpc85xx_init(struct pci_controller *hose);
- pci_mpc85xx_init(*pci_hose);
+ pci_mpc85xx_init(hose);
#endif
}