]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/gaisler/grsim_leon2/grsim_leon2.c
board_f: Drop return value from initdram()
[people/ms/u-boot.git] / board / gaisler / grsim_leon2 / grsim_leon2.c
CommitLineData
1a459660
WD
1/*
2 * GRSIM/TSIM board
ab68f921
DH
3 *
4 * (C) Copyright 2007
5 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
ab68f921
DH
8 */
9
10#include <common.h>
11#include <asm/leon.h>
12
088454cd 13int initdram(void)
ab68f921 14{
088454cd
SG
15 /* Does not set gd->ram_size here */
16
17 return 0;
ab68f921
DH
18}
19
20int checkboard(void)
21{
22 puts("Board: GRSIM/TSIM LEON2\n");
23 return 0;
24}
25
26int misc_init_r(void)
27{
28 return 0;
29}