diff --git a/boards/arm/cxd56xx/common/src/cxd56_crashdump.c b/boards/arm/cxd56xx/common/src/cxd56_crashdump.c index 3ccafea267..4cb81a8825 100644 --- a/boards/arm/cxd56xx/common/src/cxd56_crashdump.c +++ b/boards/arm/cxd56xx/common/src/cxd56_crashdump.c @@ -100,7 +100,7 @@ static void copy_reverse(stack_word_t *dest, stack_word_t *src, int size) void board_crashdump(uintptr_t sp, struct tcb_s *tcb, const char *filename, int lineno, - const char *msg, FAR void *regs) + const char *msg, void *regs) { fullcontext_t *pdump; diff --git a/boards/arm/stm32/nucleo-f429zi/src/stm32_bbsram.c b/boards/arm/stm32/nucleo-f429zi/src/stm32_bbsram.c index ce22a547a6..92474e389d 100644 --- a/boards/arm/stm32/nucleo-f429zi/src/stm32_bbsram.c +++ b/boards/arm/stm32/nucleo-f429zi/src/stm32_bbsram.c @@ -381,7 +381,7 @@ int stm32_bbsram_int(void) #if defined(CONFIG_STM32_SAVE_CRASHDUMP) void board_crashdump(uintptr_t sp, struct tcb_s *tcb, const char *filename, int lineno, - const char *msg, FAR void *regs) + const char *msg, void *regs) { fullcontext_t *pdump = (fullcontext_t *)&g_sdata; int rv; diff --git a/boards/arm/stm32f7/nucleo-144/src/stm32_bbsram.c b/boards/arm/stm32f7/nucleo-144/src/stm32_bbsram.c index e1eeb7e008..6fdec397f7 100644 --- a/boards/arm/stm32f7/nucleo-144/src/stm32_bbsram.c +++ b/boards/arm/stm32f7/nucleo-144/src/stm32_bbsram.c @@ -381,7 +381,7 @@ int stm32_bbsram_int(void) #if defined(CONFIG_STM32F7_SAVE_CRASHDUMP) void board_crashdump(uintptr_t sp, struct tcb_s *tcb, const char *filename, int lineno, - const char *msg, FAR void *regs) + const char *msg, void *regs) { fullcontext_t *pdump = (fullcontext_t *)&g_sdata; int rv; diff --git a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c index 42650573a3..48dcb72d2b 100644 --- a/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c @@ -334,7 +334,7 @@ int rx65n_sbram_int(void) #if defined(CONFIG_RX65N_SAVE_CRASHDUMP) void board_crashdump(uintptr_t sp, struct tcb_s *tcb, const char *filename, int lineno, - const char *msg, FAR void *regs) + const char *msg, void *regs) { struct fullcontext *pdump; pdump = (struct fullcontext *)&g_sdata; diff --git a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c index bed17a1022..4041b23df3 100644 --- a/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c +++ b/boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c @@ -332,7 +332,7 @@ int rx65n_sbram_int(void) #if defined(CONFIG_RX65N_SAVE_CRASHDUMP) void board_crashdump(uintptr_t sp, struct tcb_s *tcb, const char *filename, int lineno, - const char *msg, FAR void *regs) + const char *msg, void *regs) { struct fullcontext *pdump; pdump = (struct fullcontext *)&g_sdata;