diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-08-18 07:25:26 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:27 +0200 |
commit | e229d445fc986f800cd6b44992dacadc74d535ea (patch) | |
tree | e42c867a35ad61026e7ea2cf000c95681eb15b5f /include/configs/apx4devkit.h | |
parent | a54535551d7f37054c73c79b6f0417e7e244db89 (diff) | |
download | u-boot-e229d445fc986f800cd6b44992dacadc74d535ea.tar.gz |
MX28: Move "regs-base.h" include after SoC type configuration
For i.MX233 addition the base registers need to be change so the SoC
definition needs to be known before the header include.
The following boards has been changed:
* apx4devkit
* m28evk
* mx28evk
* sc_sps_1
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs/apx4devkit.h')
-rw-r--r-- | include/configs/apx4devkit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/apx4devkit.h b/include/configs/apx4devkit.h index b5ae44ffd5..af0b714e11 100644 --- a/include/configs/apx4devkit.h +++ b/include/configs/apx4devkit.h @@ -22,8 +22,6 @@ #ifndef __CONFIG_H #define __CONFIG_H -#include <asm/arch/regs-base.h> - /* SoC configurations */ #define CONFIG_MX28 /* i.MX28 SoC */ #define CONFIG_MXS_GPIO /* GPIO control */ @@ -32,6 +30,8 @@ #define MACH_TYPE_APX4DEVKIT 3712 #define CONFIG_MACH_TYPE MACH_TYPE_APX4DEVKIT +#include <asm/arch/regs-base.h> + #define CONFIG_SYS_NO_FLASH #define CONFIG_BOARD_EARLY_INIT_F #define CONFIG_ARCH_CPU_INIT |