From: Matthew McClintock <msm@freescale.com>
Date: Wed, 28 Jun 2006 15:46:35 +0000 (-0500)
Subject: * Fixed a bug where 8555 PCI code used the old variable and
X-Git-Tag: U-Boot-1_1_6~25^2~3
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19;p=oweals%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 <afleming@freescale.com>
---

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
 }