diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-09-26 06:55:09 -0700 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2018-10-03 17:47:19 +0800 |
commit | 8cdc6b58d71b849bb687d3d914b9b1fa26136264 (patch) | |
tree | b6940804d02482b840fcabbced2511ddf40779ce /board/AndesTech | |
parent | 4afeedf1728fe7e992b460d0369a06f8bfe4f9f3 (diff) | |
download | u-boot-8cdc6b58d71b849bb687d3d914b9b1fa26136264.tar.gz u-boot-8cdc6b58d71b849bb687d3d914b9b1fa26136264.tar.bz2 u-boot-8cdc6b58d71b849bb687d3d914b9b1fa26136264.zip |
riscv: Remove mach type
Since the mach_id is not used by RISC-V, remove it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
Diffstat (limited to 'board/AndesTech')
-rw-r--r-- | board/AndesTech/ax25-ae350/ax25-ae350.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/board/AndesTech/ax25-ae350/ax25-ae350.c b/board/AndesTech/ax25-ae350/ax25-ae350.c index fd5aaa1579..5f4ca0f5a7 100644 --- a/board/AndesTech/ax25-ae350/ax25-ae350.c +++ b/board/AndesTech/ax25-ae350/ax25-ae350.c @@ -4,7 +4,6 @@ * Rick Chen, Andes Technology Corporation <rick@andestech.com> */ -#include <asm/mach-types.h> #include <common.h> #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH) #include <netdev.h> @@ -21,7 +20,6 @@ DECLARE_GLOBAL_DATA_PTR; int board_init(void) { - gd->bd->bi_arch_number = MACH_TYPE_AE350; gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400; return 0; |