mirror of
https://github.com/apache/nuttx.git
synced 2026-05-18 17:18:28 +08:00
arch/armv7-r: fix gic.h build error
This fixes compilation error: ``` /tmp/nuttx/arch/arm/src/armv7-r/gic.h:699:17: error: 'GIC_ICDSGIR_NSATT_GRP1' undeclared; did you mean 'GIC_ICDSGIR_NSATT'? ``` Signed-off-by: Yanfeng Liu <p-liuyanfeng9@xiaomi.com>
This commit is contained in:
@@ -696,7 +696,7 @@ static inline void arm_cpu_sgi(int sgi, unsigned int cpuset)
|
||||
* SMP scenario.
|
||||
*/
|
||||
|
||||
regval |= GIC_ICDSGIR_NSATT_GRP1;
|
||||
regval |= GIC_ICDSGIR_NSATT;
|
||||
}
|
||||
|
||||
putreg32(regval, GIC_ICDSGIR);
|
||||
|
||||
Reference in New Issue
Block a user