global: Move remaining CONFIG_SYS_SDRAM_* to CFG_SYS_SDRAM_*
[platform/kernel/u-boot.git] / board / Marvell / mvebu_alleycat-5 / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2
3 #include <common.h>
4 #include <asm/global_data.h>
5
6 DECLARE_GLOBAL_DATA_PTR;
7
8 int board_init(void)
9 {
10         gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
11
12         return 0;
13 }