All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH 10/11] Fixed a bug where 8555 PCI code used the old variable and function names
@ 2006-06-27 19:36 Matthew McClintock
  0 siblings, 0 replies; only message in thread
From: Matthew McClintock @ 2006-06-27 19:36 UTC (permalink / raw)
  To: u-boot

* 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>
Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 board/cds/mpc8555cds/mpc8555cds.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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
 }
-- 
2006_06_07.01.gittree_pull-dirty

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-06-27 19:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-27 19:36 [U-Boot-Users] [PATCH 10/11] Fixed a bug where 8555 PCI code used the old variable and function names Matthew McClintock

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.