arm/armv7-a: Remove CONFIG_SMP guard from arm_scu.c

since ACTLR.SMP need enable to make cache work on Cortex A7:
https://developer.arm.com/documentation/ddi0464/f/CHDBIEIF

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2022-02-26 02:14:12 +08:00 committed by Masayuki Ishikawa
parent b13fa5fc05
commit b95022f8de

View file

@ -32,8 +32,6 @@
#include "sctlr.h"
#include "scu.h"
#ifdef CONFIG_SMP
/****************************************************************************
* Private Functions
****************************************************************************/
@ -208,5 +206,3 @@ void arm_enable_smp(int cpu)
regval |= SCTLR_C;
arm_set_sctlr(regval);
}
#endif