Skip to content

Commit

Permalink
arch/armv7-r: fix gic.h build error
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
Yanfeng Liu committed Jan 17, 2025
1 parent b561b44 commit f6a8f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/src/armv7-r/gic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f6a8f05

Please sign in to comment.