common: Drop log.h from common header
[platform/kernel/u-boot.git] / board / mediatek / mt8512 / mt8512.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2019 MediaTek Inc.
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <log.h>
9 #include <wdt.h>
10
11 DECLARE_GLOBAL_DATA_PTR;
12
13 int board_init(void)
14 {
15         /* address of boot parameters */
16         gd->bd->bi_boot_params = gd->ram_base + 0x100;
17
18         debug("gd->fdt_blob is %p\n", gd->fdt_blob);
19         return 0;
20 }