diff options
| author | Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> | 2011-11-21 23:43:58 +0000 | 
|---|---|---|
| committer | Macpaul Lin <macpaul@andestech.com> | 2011-11-23 14:06:28 +0800 | 
| commit | f52138ae87987d193ef715c09b3d2d6ca5645d01 (patch) | |
| tree | 3eba81bf8354f609bc0504234ae7e234e83c4d49 | |
| parent | 39c87743bb23ea0d102b1386f6fd0d120438a9c6 (diff) | |
| download | olio-uboot-2014.01-f52138ae87987d193ef715c09b3d2d6ca5645d01.tar.xz olio-uboot-2014.01-f52138ae87987d193ef715c09b3d2d6ca5645d01.zip | |
Fix clash between IH_ARCH_NDS32 and IH_ARCH_SANDBOX
NDS32 and SANDBOX architecture were sharing the same IH_ARCH number
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Acked-by: Macpaul Lin <macpaul@andestech.com>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
| -rw-r--r-- | include/image.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/image.h b/include/image.h index c56a18df7..6a41c2e34 100644 --- a/include/image.h +++ b/include/image.h @@ -107,7 +107,7 @@  #define IH_ARCH_AVR32		17	/* AVR32	*/  #define IH_ARCH_ST200	        18	/* STMicroelectronics ST200  */  #define IH_ARCH_SANDBOX		19	/* Sandbox architecture (test only) */ -#define IH_ARCH_NDS32	        19	/* ANDES Technology - NDS32  */ +#define IH_ARCH_NDS32	        20	/* ANDES Technology - NDS32  */  /*   * Image Types |