timer: Move union u32_u16_u from compiler.h to avr/timer.c

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2016-06-01 09:52:02 -04:00
parent f582a36e4d
commit 45ba03efa3
2 changed files with 4 additions and 6 deletions

View file

@ -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;
}