projects
/
oweals
/
u-boot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
board_f: Drop return value from initdram()
[oweals/u-boot.git]
/
board
/
gaisler
/
grsim_leon2
/
grsim_leon2.c
1
/*
2
* GRSIM/TSIM board
3
*
4
* (C) Copyright 2007
5
* Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
6
*
7
* SPDX-License-Identifier: GPL-2.0+
8
*/
9
10
#include <common.h>
11
#include <asm/leon.h>
12
13
int initdram(void)
14
{
15
/* Does not set gd->ram_size here */
16
17
return 0;
18
}
19
20
int checkboard(void)
21
{
22
puts("Board: GRSIM/TSIM LEON2\n");
23
return 0;
24
}
25
26
int misc_init_r(void)
27
{
28
return 0;
29
}