mirror of
https://github.com/apache/nuttx.git
synced 2026-05-27 19:36:35 +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.
|
* SMP scenario.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
regval |= GIC_ICDSGIR_NSATT_GRP1;
|
regval |= GIC_ICDSGIR_NSATT;
|
||||||
}
|
}
|
||||||
|
|
||||||
putreg32(regval, GIC_ICDSGIR);
|
putreg32(regval, GIC_ICDSGIR);
|
||||||
|
|||||||
Reference in New Issue
Block a user