diff options
author | Jon Loeliger <jdl@freescale.com> | 2006-10-19 11:33:52 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-10-19 11:33:52 -0500 |
commit | 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b (patch) | |
tree | ce428464fe9a2e0bb74e024c124f9204d9cfefb4 /board/cds | |
parent | 5f3249a0a168e446a4cc9669b2bce0bc456f0a09 (diff) | |
download | u-boot-imx-13a7fcdf37f6ea9429ae04c9df67f893364cfe4b.zip u-boot-imx-13a7fcdf37f6ea9429ae04c9df67f893364cfe4b.tar.gz u-boot-imx-13a7fcdf37f6ea9429ae04c9df67f893364cfe4b.tar.bz2 |
* Fix a bunch of compiler warnings for gcc 4.0
Signed-off-by: Matthew McClintock <msm@freescale.com>
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 c2b3009..a42904c 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 66219e3..41bcf88 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 012181c..d980ea6 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 } |