blob: a0fef71d689b2e123e253bf4c26f164eaf604822 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/*
2 * (C) Copyright 2016 ZXIC Inc.
3 *
4 */
5
6#include <common.h>
7#include <asm/io.h>
8#if (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)
9#include <linux/mtd/nand_legacy.h>
10#endif
11
12
13/*****************************************
14 * Routine: board_init
15 * Description: Early hardware init.
16 *****************************************/
17int board_init(void)
18{
19 return 0;
20}
21