aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Loeliger <jdl@freescale.com>2006-10-20 15:54:34 -0500
committerJon Loeliger <jdl@freescale.com>2006-10-20 15:54:34 -0500
commitf5012827df11ca0c9be1df5f8b153e188dc2fa7c (patch)
treefa4879a5be8e7d9a4adfbb712b035b2147adfd63
parentd22200f0204ce3210ed47d4e13864ebc60b93918 (diff)
Fix compilation warnings on a few 85xx boards.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
-rw-r--r--board/cds/common/ft_board.c2
-rw-r--r--board/cds/mpc8548cds/mpc8548cds.c2
-rw-r--r--board/mpc8560ads/mpc8560ads.c4
3 files changed, 5 insertions, 3 deletions
diff --git a/board/cds/common/ft_board.c b/board/cds/common/ft_board.c
index a897d045a..9d97905ca 100644
--- a/board/cds/common/ft_board.c
+++ b/board/cds/common/ft_board.c
@@ -45,8 +45,6 @@ static void cds_pci_fixup(void *blob)
/* We rotate the interrupt pins so that the mapping
* changes depending on the slot the carrier card is in.
*/
- int j;
-
map[3] = ((map[3] + slot - 2) % 4) + 1;
map+=7;
diff --git a/board/cds/mpc8548cds/mpc8548cds.c b/board/cds/mpc8548cds/mpc8548cds.c
index 41bcf8851..7433ebf25 100644
--- a/board/cds/mpc8548cds/mpc8548cds.c
+++ b/board/cds/mpc8548cds/mpc8548cds.c
@@ -329,7 +329,7 @@ pci_init_board(void)
int last_stage_init(void)
{
- unsigned int temp;
+ unsigned short temp;
/* Change the resistors for the PHY */
/* This is needed to get the RGMII working for the 1.3+
diff --git a/board/mpc8560ads/mpc8560ads.c b/board/mpc8560ads/mpc8560ads.c
index c1572a35d..d19bad683 100644
--- a/board/mpc8560ads/mpc8560ads.c
+++ b/board/mpc8560ads/mpc8560ads.c
@@ -33,6 +33,10 @@
#include <spd.h>
#include <miiphy.h>
+#if defined(CONFIG_OF_FLAT_TREE)
+#include <ft_build.h>
+#endif
+
#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
extern void ddr_enable_ecc(unsigned int dram_size);
#endif