pkarashchenko commented on code in PR #6093:
URL: https://github.com/apache/incubator-nuttx/pull/6093#discussion_r851914958
##########
arch/arm/include/arch.h:
##########
@@ -65,7 +65,7 @@ do { \
"\tmov %0, " PIC_REG_STRING "\n\t" \
: "=r"(picbase) \
); \
- *ppicbase = (FAR void*)picbase; \
+ *ppicbase = (void*)picbase; \
Review Comment:
```suggestion
*ppicbase = (void *)picbase; \
```
##########
arch/arm/src/common/arm_backtrace_thumb.c:
##########
@@ -184,13 +184,13 @@ static bool in_code_region(FAR void *pc)
#ifdef CONFIG_MM_KASAN
__attribute__((no_sanitize_address))
#endif
-static FAR void *backtrace_push_internal(FAR void **psp,
- FAR void **ppc)
+static void *backtrace_push_internal(void **psp,
+ void **ppc)
Review Comment:
```suggestion
static void *backtrace_push_internal(void **psp,
void **ppc)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]