浏览代码

* 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>

Matthew McClintock 19 年之前
父节点
当前提交
e4c2a0eb0c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      board/cds/mpc8555cds/mpc8555cds.c

+ 2 - 2
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
 }