[U-Boot] [PATCH] MPC837XEMDS: fix pci.c build error

Wolfgang Denk wd at denx.de
Sat Oct 16 18:07:55 CEST 2010


Commit 6aa3d3b "83xx: Remove warmboot parameter from PCI init
functions" dropped the last argument to mpc83xx_pcie_init(), but
failed to fix board/freescale/mpc837xemds/pci.c which resulted in the
error:

pci.c: In function 'pci_init_board':
pci.c:141: error: too many arguments to function 'mpc83xx_pcie_init'

Signed-off-by: Wolfgang Denk <wd at denx.de>
Cc: Kim Phillips <kim.phillips at freescale.com>

---
 board/freescale/mpc837xemds/pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/board/freescale/mpc837xemds/pci.c b/board/freescale/mpc837xemds/pci.c
index 77c5bda..edb3ff0 100644
--- a/board/freescale/mpc837xemds/pci.c
+++ b/board/freescale/mpc837xemds/pci.c
@@ -138,7 +138,7 @@ skip_pci:
 	out_be32(&pcie_law[1].bar, CONFIG_SYS_PCIE2_BASE & LAWBAR_BAR);
 	out_be32(&pcie_law[1].ar, LBLAWAR_EN | LBLAWAR_512MB);
 
-	mpc83xx_pcie_init(pex2 ? 1 : 2, pcie_reg, 0);
+	mpc83xx_pcie_init(pex2 ? 1 : 2, pcie_reg);
 }
 
 void ft_pcie_fixup(void *blob, bd_t *bd)
-- 
1.7.2.3



More information about the U-Boot mailing list