diff options
author | Stefan Roese <sr@denx.de> | 2015-12-09 10:25:10 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2016-01-14 14:08:59 +0100 |
commit | 00a457b22e193d866bc14cc6a4f26c93d18479ce (patch) | |
tree | e0fc4adcd99b8697b9569344901ea572603bf078 | |
parent | ab8a4c6afa0e57f2ef0ad4c7069e16d82c35fc87 (diff) | |
download | u-boot-00a457b22e193d866bc14cc6a4f26c93d18479ce.tar.gz u-boot-00a457b22e193d866bc14cc6a4f26c93d18479ce.tar.xz u-boot-00a457b22e193d866bc14cc6a4f26c93d18479ce.zip |
arm: mvebu: Don't use 0 as board ID as its used for the custom boards
Using board ID 0 is reserved for the non-Marvell "custom" boards. So
move the board ID's to reflect this.
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Luka Perkov <luka.perkov@sartura.hr>
Cc: Phil Sutter <phil@nwl.cc>
-rw-r--r-- | arch/arm/mach-mvebu/serdes/axp/board_env_spec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvebu/serdes/axp/board_env_spec.h b/arch/arm/mach-mvebu/serdes/axp/board_env_spec.h index 36e0ed80f0..f00f32787c 100644 --- a/arch/arm/mach-mvebu/serdes/axp/board_env_spec.h +++ b/arch/arm/mach-mvebu/serdes/axp/board_env_spec.h @@ -32,7 +32,7 @@ #define BOARD_ID_BASE 0x0 /* New board ID numbers */ -#define DB_88F78XX0_BP_ID (BOARD_ID_BASE) +#define DB_88F78XX0_BP_ID (BOARD_ID_BASE + 1) #define RD_78460_SERVER_ID (DB_88F78XX0_BP_ID + 1) #define DB_78X60_PCAC_ID (RD_78460_SERVER_ID + 1) #define FPGA_88F78XX0_ID (DB_78X60_PCAC_ID + 1) |