diff options
author | Tom Rini <trini@konsulko.com> | 2022-03-25 21:20:29 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-25 21:20:29 -0400 |
commit | 28c2ebef372b4c9bb18bed8373e0d9e65a09b42b (patch) | |
tree | eaa6ecb25a91bf76999a7d8843e7158d6856287f /board/sunxi/board.c | |
parent | cbc05bba8cb7da62eae65f41e1b0ddbcadc06bba (diff) | |
parent | 85da5587629b12220c2f19ac0780ca8f4c482f16 (diff) |
Merge https://source.denx.de/u-boot/custodians/u-boot-sunxi
- Fix A20 GBit Ethernet operation
- Update board .dts files to provide correct RGMII PHY mode
Diffstat (limited to 'board/sunxi/board.c')
-rw-r--r-- | board/sunxi/board.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/sunxi/board.c b/board/sunxi/board.c index a096159047..28f702bc29 100644 --- a/board/sunxi/board.c +++ b/board/sunxi/board.c @@ -30,6 +30,7 @@ #include <asm/arch/prcm.h> #include <asm/arch/pmic_bus.h> #include <asm/arch/spl.h> +#include <asm/arch/sys_proto.h> #include <asm/global_data.h> #include <linux/delay.h> #include <u-boot/crc.h> @@ -308,6 +309,8 @@ int board_init(void) #endif #endif /* CONFIG_DM_MMC */ + eth_init_board(); + return 0; } |