Line data Source code
1 0 : /*
2 : * Copyright The Zephyr Project Contributors
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #ifndef ZEPHYR_ARCH_INCLUDE_XIP_H_
7 : #define ZEPHYR_ARCH_INCLUDE_XIP_H_
8 :
9 : #ifndef _ASMLANGUAGE
10 : #ifdef __cplusplus
11 : extern "C" {
12 : #endif
13 :
14 : #ifdef CONFIG_XIP
15 : void arch_data_copy(void);
16 : #else
17 0 : static inline void arch_data_copy(void)
18 : {
19 : /* Do nothing */
20 : }
21 : #endif /* CONFIG_XIP */
22 : #ifdef __cplusplus
23 : }
24 : #endif
25 :
26 : #endif /* _ASMLANGUAGE */
27 : #endif /* ZEPHYR_ARCH_INCLUDE_XIP_H_ */
|