diff options
author | Nishanth Menon | 2015-07-22 18:05:42 -0500 |
---|---|---|
committer | Tom Rini | 2015-07-27 15:02:17 -0400 |
commit | 7f2f44da4819144f13b22b5c5471d43025919fa3 (patch) | |
tree | 401b586343dd4e6b6ca7c97fd52a09ae7471485b /include | |
parent | 9a0f4004caa057ba227292e544b67ca3d03ffd89 (diff) |
configs: ti: armv7_common: enable Thumb mode for all
Commit bd2c4522c26d5 ("ti: armv7: enable EXT support in SPL (using
ti_armv7_common.h)") enabled thumb mode only for SPL builds, however,
All TI armv7 platforms do support thumb, and there is no reason why the
space savings cannot be exploited for u-boot as well.
Reported-by: Murali Karicheri <m-karicheri2@ti.com>
Suggested-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ti_armv7_common.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h index 424f233d421..7bc2d6e8366 100644 --- a/include/configs/ti_armv7_common.h +++ b/include/configs/ti_armv7_common.h @@ -231,9 +231,7 @@ #define CONFIG_SPL_EXT_SUPPORT #endif -#ifdef CONFIG_SPL_BUILD -#define CONFIG_SYS_THUMB_BUILD /* Thumbs mode to save space in SPL */ -#endif +#define CONFIG_SYS_THUMB_BUILD /* General parts of the framework, required. */ #define CONFIG_SPL_I2C_SUPPORT |