1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #9953 from Josar/uncrustify/xtimer_core

xtimer_core: uncrustify
This commit is contained in:
Gaëtan Harter 2018-09-18 17:45:20 +02:00 committed by GitHub
commit 76558bd687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,12 +61,13 @@ static inline int _is_set(xtimer_t *timer)
return (timer->target || timer->long_target);
}
static inline void xtimer_spin_until(uint32_t target) {
static inline void xtimer_spin_until(uint32_t target)
{
#if XTIMER_MASK
target = _xtimer_lltimer_mask(target);
#endif
while (_xtimer_lltimer_now() > target);
while (_xtimer_lltimer_now() < target);
while (_xtimer_lltimer_now() > target) {}
while (_xtimer_lltimer_now() < target) {}
}
void xtimer_init(void)
@ -97,6 +98,7 @@ static void _xtimer_now_internal(uint32_t *short_term, uint32_t *long_term)
uint64_t _xtimer_now64(void)
{
uint32_t short_term, long_term;
_xtimer_now_internal(&short_term, &long_term);
return ((uint64_t)long_term << 32) + short_term;
@ -283,6 +285,7 @@ static void _remove(xtimer_t *timer)
void xtimer_remove(xtimer_t *timer)
{
int state = irq_disable();
if (_is_set(timer)) {
_remove(timer);
}
@ -305,7 +308,8 @@ static uint32_t _time_left(uint32_t target, uint32_t reference)
}
}
static inline int _this_high_period(uint32_t target) {
static inline int _this_high_period(uint32_t target)
{
#if XTIMER_MASK
return (target & XTIMER_MASK) == _xtimer_high_cnt;
#else