arch/arm/include/syscall.h: Add missing inclusion of arch/armv7-r/syscall.h for CortexR.
This commit is contained in:
parent
9f408e9937
commit
bda6d7f065
|
@ -1,5 +1,5 @@
|
|||
/************************************************************************************
|
||||
* arch/arm/include/rmv7-m/nvicpri.h
|
||||
* arch/arm/include/armv7-m/nvicpri.h
|
||||
*
|
||||
* Copyright (C) 2009, 2011-2014, 2017-2018 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/****************************************************************************
|
||||
* arch/arm/include/syscall.h
|
||||
* arch/arm/include/elf.h
|
||||
*
|
||||
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
|
|
|
@ -46,8 +46,13 @@
|
|||
|
||||
/* Include ARM architecture-specific syscall macros */
|
||||
|
||||
#if defined(CONFIG_ARCH_CORTEXA5) || defined(CONFIG_ARCH_CORTEXA8)
|
||||
#if defined(CONFIG_ARCH_CORTEXA5) || defined(CONFIG_ARCH_CORTEXA8) || \
|
||||
defined(CONFIG_ARCH_CORTEXA9)
|
||||
# include <arch/armv7-a/syscall.h>
|
||||
#elif defined(CONFIG_ARCH_CORTEXR4) || defined(CONFIG_ARCH_CORTEXR4F) || \
|
||||
defined(CONFIG_ARCH_CORTEXR5) || defined(CONFIG_ARCH_CORTEXR5F) || \
|
||||
defined(CONFIG_ARCH_CORTEXR7) || defined(CONFIG_ARCH_CORTEXR7F)
|
||||
# include <arch/armv7-r/syscall.h>
|
||||
#elif defined(CONFIG_ARCH_CORTEXM3) || defined(CONFIG_ARCH_CORTEXM4) || \
|
||||
defined(CONFIG_ARCH_CORTEXM7)
|
||||
# include <arch/armv7-m/syscall.h>
|
||||
|
|
Loading…
Reference in New Issue