Merge tag 'xilinx-for-v2021.04-rc3' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / board / ste / stemmy / stemmy.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2019 Stephan Gerhold <stephan@gerhold.net>
4  */
5 #include <common.h>
6 #include <init.h>
7 #include <asm/global_data.h>
8
9 DECLARE_GLOBAL_DATA_PTR;
10
11 int dram_init(void)
12 {
13         gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, CONFIG_SYS_SDRAM_SIZE);
14         return 0;
15 }
16
17 int board_init(void)
18 {
19         return 0;
20 }