This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 4033a4a2a4 boards: remove unnecessary FAR
4033a4a2a4 is described below
commit 4033a4a2a4cdd32835ec5b942ff9138532996726
Author: zhangyuan21 <[email protected]>
AuthorDate: Tue Jun 13 06:28:43 2023 +0800
boards: remove unnecessary FAR
Signed-off-by: zhangyuan21 <[email protected]>
---
boards/arm/cxd56xx/common/src/cxd56_crashdump.c | 2 +-
boards/arm/stm32/nucleo-f429zi/src/stm32_bbsram.c | 2 +-
boards/arm/stm32f7/nucleo-144/src/stm32_bbsram.c | 2 +-
boards/renesas/rx65n/rx65n-grrose/src/rx65n_sbram.c | 2 +-
boards/renesas/rx65n/rx65n-rsk2mb/src/rx65n_sbram.c | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
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;