projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbfc7ce
)
* Fixed a bug where 8555 PCI code used the old variable and
author
Matthew McClintock
<msm@freescale.com>
Wed, 28 Jun 2006 15:46:35 +0000
(10:46 -0500)
committer
Matthew McClintock
<msm@freescale.com>
Wed, 28 Jun 2006 15:46:35 +0000
(10:46 -0500)
function names
Patch by Andy Fleming 17-Mar-2006
Signed-off-by: Andy Fleming <afleming@freescale.com>
board/cds/mpc8555cds/mpc8555cds.c
patch
|
blob
|
history
diff --git
a/board/cds/mpc8555cds/mpc8555cds.c
b/board/cds/mpc8555cds/mpc8555cds.c
index e15bf8f2ca3a06b83909944ad8cf0e2bdc8d4792..012181c31d3470c6a7f723646ba2e82b0bb4d295 100644
(file)
--- 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
}