From: Matthew McClintock Date: Wed, 28 Jun 2006 15:46:35 +0000 (-0500) Subject: * Fixed a bug where 8555 PCI code used the old variable and function names Patch... X-Git-Tag: v2008.10-rc1~1125^2~1^2~21^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39;p=platform%2Fkernel%2Fu-boot.git * 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 --- diff --git a/board/cds/mpc8555cds/mpc8555cds.c b/board/cds/mpc8555cds/mpc8555cds.c index e15bf8f..012181c 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 }