u-boot/board/gaisler/gr_ep2s60/gr_ep2s60.c
Simon Glass 088454cde2 board_f: Drop return value from initdram()
At present we cannot use this function as an init sequence call without a
wrapper, since it returns the RAM size. Adjust it to set the RAM size in
global_data instead, and return 0 on success.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
2017-04-05 13:59:20 -04:00

40 lines
545 B
C

/*
* (C) Copyright 2008
* Daniel Hellstrom, daniel@gaisler.com.
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <netdev.h>
#include <config.h>
#include <asm/leon.h>
int initdram(void)
{
/* Does not set gd->ram_size here */
return 0;
}
int checkboard(void)
{
puts("Board: EP2S60 GRLIB\n");
return 0;
}
int misc_init_r(void)
{
return 0;
}
#ifdef CONFIG_CMD_NET
int board_eth_init(bd_t *bis)
{
int rc = 0;
#ifdef CONFIG_SMC91111
rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
#endif
return rc;
}
#endif