As noted in PR #89370, the content of these files falls below the trivial threshold. Therefore, it is not necessary to retain the original copyright, which was carried over when the files were copied from the `cmsis` module. Signed-off-by: Sudan Landge <sudan.landge@arm.com>
14 lines
336 B
C
14 lines
336 B
C
/*
|
|
* Copyright 2025 Arm Limited and/or its affiliates <open-source-office@arm.com>
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_MODULES_CMSIS_6_CMSIS_CORE_H_
|
|
#define ZEPHYR_MODULES_CMSIS_6_CMSIS_CORE_H_
|
|
|
|
#if defined(CONFIG_CPU_CORTEX_M)
|
|
#include "cmsis_core_m.h"
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_MODULES_CMSIS_6_CMSIS_CORE_H_ */
|