summaryrefslogtreecommitdiffstats
path: root/board/freescale/mpc8641hpcn/mpc8641hpcn.c
diff options
context:
space:
mode:
authorBecky Bruce <becky.bruce@freescale.com>2008-10-31 17:13:32 -0500
committerJon Loeliger <jdl@freescale.com>2008-11-03 11:05:01 -0600
commit4c77de3f144ca088c3867bd6240718c10f5a9d69 (patch)
tree3dd1117f16ecc417521e9589eca96d9a082c91f9 /board/freescale/mpc8641hpcn/mpc8641hpcn.c
parent104992fc541302a6bac74448e01e7fdad20abca0 (diff)
downloadtalos-obmc-uboot-4c77de3f144ca088c3867bd6240718c10f5a9d69.tar.gz
talos-obmc-uboot-4c77de3f144ca088c3867bd6240718c10f5a9d69.zip
86xx: Make dram_size a phys_size_t
It's currently a long and should be phys_size_t. Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
Diffstat (limited to 'board/freescale/mpc8641hpcn/mpc8641hpcn.c')
-rw-r--r--board/freescale/mpc8641hpcn/mpc8641hpcn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/freescale/mpc8641hpcn/mpc8641hpcn.c b/board/freescale/mpc8641hpcn/mpc8641hpcn.c
index 5af5c4b837..d6a0a56292 100644
--- a/board/freescale/mpc8641hpcn/mpc8641hpcn.c
+++ b/board/freescale/mpc8641hpcn/mpc8641hpcn.c
@@ -33,7 +33,7 @@
#include "../common/pixis.h"
-long int fixed_sdram(void);
+phys_size_t fixed_sdram(void);
int board_early_init_f(void)
{
@@ -53,7 +53,7 @@ int checkboard(void)
phys_size_t
initdram(int board_type)
{
- long dram_size = 0;
+ phys_size_t dram_size = 0;
#if defined(CONFIG_SPD_EEPROM)
dram_size = fsl_ddr_sdram();
@@ -75,7 +75,7 @@ initdram(int board_type)
/*
* Fixed sdram init -- doesn't use serial presence detect.
*/
-long int
+phys_size_t
fixed_sdram(void)
{
#if !defined(CONFIG_SYS_RAMBOOT)
OpenPOWER on IntegriCloud