arch: arm: remove deprecated cmsis.h

Compatible headers have already been kept for 2 releases, so the time to
remove them has come.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2024-08-12 12:02:07 +02:00 committed by Anas Nashif
commit fd4ec84fc6
3 changed files with 5 additions and 26 deletions

View file

@ -24,6 +24,11 @@ https://docs.zephyrproject.org/latest/security/vulnerabilities.html
API Changes API Changes
*********** ***********
* Removed deprecated arch-level CMSIS header files
``include/zephyr/arch/arm/cortex_a_r/cmsis.h`` and
``include/zephyr/arch/arm/cortex_m/cmsis.h``. ``cmsis_core.h`` needs to be
included now.
Removed APIs in this release Removed APIs in this release
============================ ============================

View file

@ -1,13 +0,0 @@
/*
* Copyright (c) 2023 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_ARCH_ARM_AARCH32_CORTEX_A_R_CMSIS_H_
#define ZEPHYR_ARCH_ARM_AARCH32_CORTEX_A_R_CMSIS_H_
#include <cmsis_core.h>
#warning This header is deprecated, please include <cmsis_core.h>
#endif /* ZEPHYR_ARCH_ARM_AARCH32_CORTEX_A_R_CMSIS_H_ */

View file

@ -1,13 +0,0 @@
/*
* Copyright (c) 2023 Nordic Semiconductor ASA
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_ARCH_ARM_AARCH32_CORTEX_M_CMSIS_H_
#define ZEPHYR_ARCH_ARM_AARCH32_CORTEX_M_CMSIS_H_
#include <cmsis_core.h>
#warning This header is deprecated, please include <cmsis_core.h>
#endif /* ZEPHYR_ARCH_ARM_AARCH32_CORTEX_M_CMSIS_H_ */