Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit b15d2fa

Browse files
committed
cortex_internal: Fixed the macro formatting with clang-format 19
1 parent 7859dd5 commit b15d2fa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/target/cortex_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#define CORTEX_CTR_ICACHE_LINE_MASK 0xfU
4545
#define CORTEX_CTR_DCACHE_LINE_SHIFT 16U
4646
#define CORTEX_CTR_DCACHE_LINE_MASK 0xfU
47-
#define CORTEX_CTR_ICACHE_LINE(cache_type) (1U << ((cache_type)&CORTEX_CTR_ICACHE_LINE_MASK))
47+
#define CORTEX_CTR_ICACHE_LINE(cache_type) (1U << ((cache_type) & CORTEX_CTR_ICACHE_LINE_MASK))
4848
#define CORTEX_CTR_DCACHE_LINE(cache_type) \
4949
(1U << (((cache_type) >> CORTEX_CTR_DCACHE_LINE_SHIFT) & CORTEX_CTR_DCACHE_LINE_MASK))
5050

0 commit comments

Comments
 (0)