mirror of
https://github.com/apache/nuttx.git
synced 2026-09-25 09:15:09 +08:00
boards: remove unnecessary FAR
Signed-off-by: zhangyuan21 <zhangyuan21@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
aa43f6ff1a
commit
4033a4a2a4
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user