You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/04/18 07:57:09 UTC

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a diff in pull request #6093: arch/arm: Remove FAR and CODE from common/ and arm*/ folder

xiaoxiang781216 commented on code in PR #6093:
URL: https://github.com/apache/incubator-nuttx/pull/6093#discussion_r851956103


##########
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:
   Done.



##########
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:
   Done.



-- 
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: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org