Remove the not existent CONFIG_XXX_CMNVECTOR

This commit is contained in:
Alan Carvalho de Assis 2020-05-02 12:01:11 -03:00 committed by patacongo
parent 8c0fc09853
commit 54d0256b9a
3 changed files with 1 additions and 17 deletions

View File

@ -82,11 +82,7 @@ endif
ifeq ($(CONFIG_ARCH_FPU),y)
CMN_ASRCS += arm_fpu.S
ifneq ($(CONFIG_ARMV7M_CMNVECTOR),y)
CMN_CSRCS += arm_copyarmstate.c
else ifeq ($(CONFIG_ARMV7M_LAZYFPU),y)
CMN_CSRCS += arm_copyarmstate.c
endif
endif
ifeq ($(CONFIG_ARMV7M_ITMSYSLOG),y)

View File

@ -39,18 +39,6 @@
#include <nuttx/config.h>
/* If the common RV32IM vector handling logic is used, then include the
* required vector definitions as well.
*/
#ifdef CONFIG_RV32IM_CMNVECTOR
# if defined(CONFIG_NR5_NR5M1XX)
# include "hardware/nr5m1xx_vectors.h"
# else
# error "No vector file for this NanoRisc5 family"
# endif
#endif
/* Include the chip memory map. */
#include "nr5_memorymap.h"

View File

@ -58,7 +58,7 @@
#undef HAVE_FPU
#if defined(CONFIG_ARCH_FPU) && defined(CONFIG_TESTING_OSTEST_FPUSIZE) && \
defined(CONFIG_SCHED_WAITPID) && !defined(CONFIG_ARMV7M_CMNVECTOR)
defined(CONFIG_SCHED_WAITPID)
# define HAVE_FPU 1
#endif