Rename up_copyarmstate to arm_copyarmstate

This commit is contained in:
Gregory Nutt 2020-04-30 12:26:30 -06:00 committed by Abdelatif Guettouche
parent 3d2cd1493f
commit 3a82a20c90
24 changed files with 33 additions and 33 deletions

View File

@ -52,7 +52,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_copyarmstate
* Name: arm_copyarmstate
*
* Description:
* Copy the ARM portion of the register save area (omitting the floating
@ -60,7 +60,7 @@
*
****************************************************************************/
void up_copyarmstate(uint32_t *dest, uint32_t *src)
void arm_copyarmstate(uint32_t *dest, uint32_t *src)
{
int i;

View File

@ -1,5 +1,5 @@
/****************************************************************************
* arch/arm/src/armv7-m/up_copyarmstate.c
* arch/arm/src/armv7-m/arm_copyarmstate.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@ -37,7 +37,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_copyarmstate
* Name: arm_copyarmstate
*
* Description:
* Copy the ARM portion of the register save area (omitting the floating
@ -45,7 +45,7 @@
*
****************************************************************************/
void up_copyarmstate(uint32_t *dest, uint32_t *src)
void arm_copyarmstate(uint32_t *dest, uint32_t *src)
{
int i;

View File

@ -48,7 +48,7 @@
#ifdef CONFIG_ARCH_FPU
/****************************************************************************
* Name: up_copyarmstate
* Name: arm_copyarmstate
*
* Description:
* Copy the ARM portion of the register save area (omitting the floating
@ -56,7 +56,7 @@
*
****************************************************************************/
void up_copyarmstate(uint32_t *dest, uint32_t *src)
void arm_copyarmstate(uint32_t *dest, uint32_t *src)
{
int i;

View File

@ -37,7 +37,7 @@
****************************************************************************/
/****************************************************************************
* Name: up_copyarmstate
* Name: arm_copyarmstate
*
* Description:
* Copy the ARM portion of the register save area (omitting the floating
@ -45,7 +45,7 @@
*
****************************************************************************/
void up_copyarmstate(uint32_t *dest, uint32_t *src)
void arm_copyarmstate(uint32_t *dest, uint32_t *src)
{
int i;

View File

@ -91,7 +91,7 @@
*/
# if defined(CONFIG_ARCH_FPU) && defined(CONFIG_ARMV7M_LAZYFPU)
# define up_savestate(regs) up_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# define up_savestate(regs) arm_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# else
# define up_savestate(regs) arm_copyfullstate(regs, (uint32_t*)CURRENT_REGS)
# endif
@ -108,7 +108,7 @@
*/
# if defined(CONFIG_ARCH_FPU)
# define up_savestate(regs) up_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# define up_savestate(regs) arm_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# else
# define up_savestate(regs) arm_copyfullstate(regs, (uint32_t*)CURRENT_REGS)
# endif
@ -127,7 +127,7 @@
*/
# if defined(CONFIG_ARCH_FPU)
# define up_savestate(regs) up_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# define up_savestate(regs) arm_copyarmstate(regs, (uint32_t*)CURRENT_REGS)
# else
# define up_savestate(regs) arm_copyfullstate(regs, (uint32_t*)CURRENT_REGS)
# endif
@ -296,7 +296,7 @@ void arm_boot(void);
void arm_copyfullstate(uint32_t *dest, uint32_t *src);
#ifdef CONFIG_ARCH_FPU
void up_copyarmstate(uint32_t *dest, uint32_t *src);
void arm_copyarmstate(uint32_t *dest, uint32_t *src);
#endif
void up_decodeirq(uint32_t *regs);
int up_saveusercontext(uint32_t *saveregs);

View File

@ -83,9 +83,9 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
ifneq ($(CONFIG_ARMV7M_CMNVECTOR),y)
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
else ifeq ($(CONFIG_ARMV7M_LAZYFPU),y)
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
endif

View File

@ -79,7 +79,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y)

View File

@ -91,7 +91,7 @@ CMN_CSRCS += up_cache.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
# Required i.MX RT files

View File

@ -97,7 +97,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y)

View File

@ -98,7 +98,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
# Required LPC17xx files

View File

@ -80,7 +80,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
CHIP_ASRCS =

View File

@ -80,7 +80,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
CHIP_ASRCS =

View File

@ -78,7 +78,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
# Common MAX326XX Source Files

View File

@ -76,7 +76,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
CHIP_ASRCS =

View File

@ -68,7 +68,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
# Source file specific to the S32k11x family

View File

@ -92,7 +92,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_STACK_COLORATION),y)

View File

@ -81,7 +81,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_STACK_COLORATION),y)

View File

@ -82,7 +82,7 @@ CMN_CSRCS += up_cache.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)

View File

@ -91,7 +91,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y)

View File

@ -82,7 +82,7 @@ CMN_CSRCS += up_cache.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)

View File

@ -77,7 +77,7 @@ CMN_CSRCS += up_vectors.c
CMN_CSRCS += up_cache.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifneq ($(CONFIG_ARCH_IDLE_CUSTOM),y)

View File

@ -77,7 +77,7 @@ CMN_CSRCS += up_vectors.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)

View File

@ -72,7 +72,7 @@ CMN_CSRCS += up_vectors.c
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)

View File

@ -97,7 +97,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += up_fpu.S
CMN_CSRCS += up_copyarmstate.c
CMN_CSRCS += arm_copyarmstate.c
endif
ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y)