diff options
| author | Jon Loeliger <[email protected]> | 2006-10-19 11:33:52 -0500 |
|---|---|---|
| committer | Jon Loeliger <[email protected]> | 2006-10-19 11:33:52 -0500 |
| commit | 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b (patch) | |
| tree | ce428464fe9a2e0bb74e024c124f9204d9cfefb4 /board/cds | |
| parent | 5f3249a0a168e446a4cc9669b2bce0bc456f0a09 (diff) | |
* Fix a bunch of compiler warnings for gcc 4.0
Signed-off-by: Matthew McClintock <[email protected]>
Diffstat (limited to 'board/cds')
| -rw-r--r-- | board/cds/mpc8541cds/mpc8541cds.c | 4 | ||||
| -rw-r--r-- | board/cds/mpc8548cds/mpc8548cds.c | 2 | ||||
| -rw-r--r-- | board/cds/mpc8555cds/mpc8555cds.c | 2 |
3 files changed, 1 insertions, 7 deletions
diff --git a/board/cds/mpc8541cds/mpc8541cds.c b/board/cds/mpc8541cds/mpc8541cds.c index c2b3009fd2b..a42904cf735 100644 --- a/board/cds/mpc8541cds/mpc8541cds.c +++ b/board/cds/mpc8541cds/mpc8541cds.c @@ -497,8 +497,6 @@ void pci_init_board(void) { #ifdef CONFIG_PCI - extern void pci_mpc85xx_init(struct pci_controller **hose); - - pci_mpc85xx_init(&hose); + pci_mpc85xx_init(hose); #endif } diff --git a/board/cds/mpc8548cds/mpc8548cds.c b/board/cds/mpc8548cds/mpc8548cds.c index 66219e395b1..41bcf885181 100644 --- a/board/cds/mpc8548cds/mpc8548cds.c +++ b/board/cds/mpc8548cds/mpc8548cds.c @@ -323,8 +323,6 @@ void pci_init_board(void) { #ifdef CONFIG_PCI - extern void pci_mpc85xx_init(struct pci_controller **hose); - pci_mpc85xx_init(&hose); #endif } diff --git a/board/cds/mpc8555cds/mpc8555cds.c b/board/cds/mpc8555cds/mpc8555cds.c index 012181c31d3..d980ea63102 100644 --- a/board/cds/mpc8555cds/mpc8555cds.c +++ b/board/cds/mpc8555cds/mpc8555cds.c @@ -497,8 +497,6 @@ void pci_init_board(void) { #ifdef CONFIG_PCI - extern void pci_mpc85xx_init(struct pci_controller *hose); - pci_mpc85xx_init(hose); #endif } |
