* Fixed a bug where 8555 PCI code used the old variable and function names Patch...
authorMatthew McClintock <msm@freescale.com>
Wed, 28 Jun 2006 15:46:35 +0000 (10:46 -0500)
committerJon Loeliger <jdl@freescale.com>
Wed, 9 Aug 2006 18:51:00 +0000 (13:51 -0500)
Signed-off-by: Andy Fleming <afleming@freescale.com>
board/cds/mpc8555cds/mpc8555cds.c

index e15bf8f..012181c 100644 (file)
@@ -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
 }