Fix missing semicolons in DEBUGASSERT statements

This commit is contained in:
Gregory Nutt 2016-12-14 09:06:09 -06:00
parent a560d70e7a
commit 730ca4ce41
2 changed files with 3 additions and 3 deletions

View File

@ -327,7 +327,7 @@ int esp32_alloc_levelint(int priority)
uint32_t intmask;
DEBUGASSERT(priority >= ESP32_MIN_PRIORITY &&
priority <= ESP32_MAX_PRIORITY)
priority <= ESP32_MAX_PRIORITY);
/* Check if there are any level CPU interrupts available at the requested
* interrupt priority.
@ -359,7 +359,7 @@ int esp32_alloc_edgeint(int priority)
uint32_t intmask;
DEBUGASSERT(priority >= ESP32_MIN_PRIORITY &&
priority <= ESP32_MAX_PRIORITY)
priority <= ESP32_MAX_PRIORITY);
/* Check if there are any edge CPU interrupts available at the requested
* interrupt priority.

View File

@ -183,7 +183,7 @@ void xtensa_timer_initialize(void)
*/
divisor = (1000000ull * (uint64_t)BOARD_CLOCK_FREQUENCY) / CONFIG_USEC_PER_TICK;
DEBUGASSERT(divisor <= UINT32_MAX)
DEBUGASSERT(divisor <= UINT32_MAX);
g_tick_divisor = divisor;
/* Set up periodic timer */