lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /* |
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 | *****************************************/ | ||||
17 | int board_init(void) | ||||
18 | { | ||||
19 | return 0; | ||||
20 | } | ||||
21 |