]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
board_f: Rename initdram() to dram_init()
[people/ms/u-boot.git] / board / gaisler / gr_xc3s_1500 / gr_xc3s_1500.c
1 /*
2 * (C) Copyright 2007
3 * Daniel Hellstrom, daniel@gaisler.com.
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #include <common.h>
9 #include <config.h>
10 #include <asm/leon.h>
11
12 int dram_init(void)
13 {
14 /* Does not set gd->ram_size here */
15
16 return 0;
17 }
18
19 int checkboard(void)
20 {
21 puts("Board: GR-XC3S-1500\n");
22 return 0;
23 }
24
25 int misc_init_r(void)
26 {
27 return 0;
28 }