diff options
Diffstat (limited to 'src/compiler.h')
-rw-r--r-- | src/compiler.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/compiler.h b/src/compiler.h index ba4b83d5..7085f864 100644 --- a/src/compiler.h +++ b/src/compiler.h @@ -39,11 +39,6 @@ (((x) + ((__divisor) / 2)) / (__divisor)); \ }) -union u32_u16_u { - struct { uint16_t lo, hi; }; - uint32_t val; -}; - static inline void writel(void *addr, uint32_t val) { *(volatile uint32_t *)addr = val; } |