xref: /openbmc/u-boot/board/mediatek/mt7623/mt7623_rfb.c (revision 9ab403d0dd3c88370612c97f8c4cb88199302833)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2018 MediaTek Inc.
4  */
5 
6 #include <common.h>
7 
8 DECLARE_GLOBAL_DATA_PTR;
9 
10 int board_init(void)
11 {
12 	/* address of boot parameters */
13 	gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
14 
15 	return 0;
16 }
17