soc: arm: Fix header inclusion from deprecated paths

This commit fixes Cortex-M header inclusions from the deprecated paths.

The Cortex-M headers were relocated from `include/arch/arm/cortex_m` to
`include/arch/arm/aarch32/cortex_m` by the refactoring done in the
commit d048faacf2.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
Stephanos Ioannidis 2020-06-09 09:25:51 +09:00 committed by Ioannis Glaropoulos
commit 9cf4cab53d
6 changed files with 6 additions and 6 deletions

View file

@ -5,4 +5,4 @@
#include <autoconf.h>
#include <arch/arm/cortex_m/scripts/linker.ld>
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -4,4 +4,4 @@
* SPDX-License-Identifier: Apache-2.0
*/
#include <arch/arm/cortex_m/scripts/linker.ld>
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -14,4 +14,4 @@
#include <autoconf.h>
#include <arch/arm/cortex_m/scripts/linker.ld>
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -13,4 +13,4 @@
#include <autoconf.h>
#include <arch/arm/cortex_m/scripts/linker.ld>
#include <arch/arm/aarch32/cortex_m/scripts/linker.ld>

View file

@ -6,7 +6,7 @@
#include <ztest.h>
#include <arch/cpu.h>
#include <arch/arm/cortex_m/cmsis.h>
#include <arch/arm/aarch32/cortex_m/cmsis.h>
/* Offset for the Direct interrupt used in this test. */
#define DIRECT_ISR_OFFSET (CONFIG_NUM_IRQS - 1)

View file

@ -13,7 +13,7 @@
#if defined(CONFIG_CPU_CORTEX_M_HAS_DWT)
/* Use cycle counting on the Cortex-M devices that support DWT */
#include <arch/arm/cortex_m/cmsis.h>
#include <arch/arm/aarch32/cortex_m/cmsis.h>
static ALWAYS_INLINE void benchmark_begin(uint32_t *irq_key, uint32_t *timestamp)
{