File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
* SPDX-License-Identifier: Apache-2.0
5
5
*/
6
6
7
- #ifndef __DT_FREQ_H
8
- #define __DT_FREQ_H
7
+ #ifndef ZEPHYR_DTS_COMMON_FREQ_H_
8
+ #define ZEPHYR_DTS_COMMON_FREQ_H_
9
9
10
10
#define DT_FREQ_K (x ) ((x) * 1000)
11
11
#define DT_FREQ_M (x ) (DT_FREQ_K(x) * 1000)
12
12
13
- #endif /* __DT_FREQ_H */
13
+ #endif /* ZEPHYR_DTS_COMMON_FREQ_H_ */
Original file line number Diff line number Diff line change 4
4
* SPDX-License-Identifier: Apache-2.0
5
5
*/
6
6
7
- #ifndef __DT_MEM_H
8
- #define __DT_MEM_H
7
+ #ifndef ZEPHYR_DTS_COMMON_MEM_H_
8
+ #define ZEPHYR_DTS_COMMON_MEM_H_
9
9
10
10
#define DT_SIZE_K (x ) ((x) * 1024)
11
11
#define DT_SIZE_M (x ) (DT_SIZE_K(x) * 1024)
15
15
16
16
#define DT_ADDR (a ) _DT_DO_CONCAT(0x, a)
17
17
18
- #endif /* __DT_MEM_H */
18
+ #endif /* ZEPHYR_DTS_COMMON_MEM_H_ */
You can’t perform that action at this time.
0 commit comments