diff options
author | Bin Meng | 2018-11-22 11:26:26 +0100 |
---|---|---|
committer | Andes | 2018-11-26 13:57:31 +0800 |
commit | c95cafd0b1ca984e0dbd8e1335c947d715ce0fb2 (patch) | |
tree | 692ca27c689ad3e7958e5369924c76e9981b74db /include | |
parent | 2a23ac610709bc18b2becebb45abc7596b4d1e9c (diff) |
Drop CONFIG_INIT_CRITICAL
This is now deprecated and no board is using it. Drop it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/common.h b/include/common.h index 3f699438875..8b561370326 100644 --- a/include/common.h +++ b/include/common.h @@ -549,11 +549,6 @@ int cpu_release(u32 nr, int argc, char * const argv[]); #endif #endif -#ifdef CONFIG_INIT_CRITICAL -#error CONFIG_INIT_CRITICAL is deprecated! -#error Read section CONFIG_SKIP_LOWLEVEL_INIT in README. -#endif - #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1)) /* |