diff options
Diffstat (limited to 'arch/nds32')
| -rw-r--r-- | arch/nds32/include/asm/u-boot.h | 1 | ||||
| -rw-r--r-- | arch/nds32/lib/board.c | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/nds32/include/asm/u-boot.h b/arch/nds32/include/asm/u-boot.h index eabbf38fb..b533fea7c 100644 --- a/arch/nds32/include/asm/u-boot.h +++ b/arch/nds32/include/asm/u-boot.h @@ -40,7 +40,6 @@ typedef struct bd_info { int bi_baudrate; /* serial console baudrate */ - unsigned char bi_enetaddr[6]; /* Ethernet adress */ unsigned long bi_arch_number; /* unique id for this board */ unsigned long bi_boot_params; /* where this board expects params */ unsigned long bi_memstart; /* start of DRAM memory */ diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c index 7121313a8..2164a505f 100644 --- a/arch/nds32/lib/board.c +++ b/arch/nds32/lib/board.c @@ -103,6 +103,7 @@ static int nds32_pci_init(void) #endif /* CONFIG_CMD_PCI || CONFIG_PCI */ #if defined(CONFIG_PMU) || defined(CONFIG_PCU) +#ifndef CONFIG_SKIP_LOWLEVEL_INIT static int pmu_init(void) { #if defined(CONFIG_FTPMU010_POWER) @@ -115,6 +116,7 @@ static int pmu_init(void) return 0; } #endif +#endif /* * Breathe some life into the board... @@ -301,7 +303,6 @@ void board_init_f(ulong bootflag) */ void board_init_r(gd_t *id, ulong dest_addr) { - char *s; bd_t *bd; ulong malloc_start; |