arch/risc-v: Rename up_fpuconfig to riscv_fpuconfig
Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
parent
d09be7d658
commit
20c511fcf1
@ -36,7 +36,7 @@
|
||||
* Public Symbols
|
||||
************************************************************************************/
|
||||
|
||||
.globl up_fpuconfig
|
||||
.globl riscv_fpuconfig
|
||||
.globl riscv_savefpu
|
||||
.globl riscv_restorefpu
|
||||
|
||||
@ -72,13 +72,13 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: up_fpuconfig
|
||||
* Name: riscv_fpuconfig
|
||||
*
|
||||
* Description:
|
||||
* init fpu
|
||||
*
|
||||
* C Function Prototype:
|
||||
* void up_fpuconfig(void);
|
||||
* void riscv_fpuconfig(void);
|
||||
*
|
||||
* Input Parameters:
|
||||
* None
|
||||
@ -88,9 +88,9 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
.type up_fpuconfig, function
|
||||
.type riscv_fpuconfig, function
|
||||
|
||||
up_fpuconfig:
|
||||
riscv_fpuconfig:
|
||||
li a0, FS_INITIAL
|
||||
csrs mstatus, a0
|
||||
csrwi fcsr, 0
|
||||
|
@ -204,9 +204,11 @@ int riscv_swint(int irq, void *context, void *arg);
|
||||
uintptr_t riscv_get_newintctx(void);
|
||||
|
||||
#ifdef CONFIG_ARCH_FPU
|
||||
void riscv_fpuconfig(void);
|
||||
void riscv_savefpu(uintptr_t *regs);
|
||||
void riscv_restorefpu(const uintptr_t *regs);
|
||||
#else
|
||||
# define riscv_fpuconfig()
|
||||
# define riscv_savefpu(regs)
|
||||
# define riscv_restorefpu(regs)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user