diff options
Diffstat (limited to 'board/walnut405/walnut405.c')
| -rw-r--r-- | board/walnut405/walnut405.c | 11 | 
1 files changed, 3 insertions, 8 deletions
| diff --git a/board/walnut405/walnut405.c b/board/walnut405/walnut405.c index 93c203432..598509f7c 100644 --- a/board/walnut405/walnut405.c +++ b/board/walnut405/walnut405.c @@ -20,13 +20,11 @@   * Foundation, Inc., 59 Temple Place, Suite 330, Boston,   * MA 02111-1307 USA   */ -long int spd_sdram (void);  #include <common.h>  #include "walnut405.h"  #include <asm/processor.h> - - +#include <spd_sdram.h>  int board_pre_init (void)  { @@ -118,11 +116,8 @@ int checkboard (void)    the necessary info for SDRAM controller configuration     ------------------------------------------------------------------------- */  long int initdram (int board_type) -{ -	long int ret; - -	ret = spd_sdram (); -	return ret; +{	 +	return  spd_sdram (0);  }  /* ------------------------------------------------------------------------- */ |