commit | 97a8d65fe1e36ec80dda977ff6d4e0ef80665fe0 | [log] [tgz] |
---|---|---|
author | Oded Gabbay <oded.gabbay@gmail.com> | Tue Dec 27 11:19:43 2016 +0200 |
committer | Tom Rini <trini@konsulko.com> | Sat Jan 14 16:46:27 2017 -0500 |
tree | 03ab25e176fc22d7138b2e0f7b48a9d9c966b9b5 | |
parent | cd01e644e702b4db5a784a1c92b4eadfb9bca781 [diff] |
armv8: fix #if around spin-table code in start.S Using CONFIG_IS_ENABLED() doesn't work in SPL. This patch replaces the only occurrence of CONFIG_IS_ENABLED() in start.S to a regular #if defined(). It also adds "&& !defined(CONFIG_SPL_BUILD)" to that #if statement because the spin-table code can't currently work in SPL, and the spin-table file isn't even compiled in SPL. Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>