diff options
author | Nishanth Menon <nm@ti.com> | 2015-07-22 18:05:41 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-07-27 15:02:17 -0400 |
commit | 9a0f4004caa057ba227292e544b67ca3d03ffd89 (patch) | |
tree | 95a1496910b8c468804a1ba2c9825caa2c809e13 /include/configs/ti_omap3_common.h | |
parent | 8845ad4f2e1475e7096f7aea0561f0b1262d5738 (diff) | |
download | u-boot-9a0f4004caa057ba227292e544b67ca3d03ffd89.tar.gz |
configs: split ti_armv7_common into a omap generic header
TI armv7 based SoCs are based on two architectures - one based on OMAP
generation architecture and others based on Keystone architecture.
Many of the options are architecture specific, however a lot are common
with v7 architecture. So, step 1 will be to move out OMAP specific stuff
from ti_armv7_common into a ti_armv7_omap.h header which is then used
by all the relevant architecture headers.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'include/configs/ti_omap3_common.h')
-rw-r--r-- | include/configs/ti_omap3_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ti_omap3_common.h b/include/configs/ti_omap3_common.h index 429b109afa..be231a5513 100644 --- a/include/configs/ti_omap3_common.h +++ b/include/configs/ti_omap3_common.h @@ -84,6 +84,6 @@ #endif /* Now bring in the rest of the common code. */ -#include <configs/ti_armv7_common.h> +#include <configs/ti_armv7_omap.h> #endif /* __CONFIG_TI_OMAP3_COMMON_H__ */ |