diff --git a/hal/lib/athena/HALAthena.cpp b/hal/lib/athena/HALAthena.cpp index 912b3685fe..fc05a9184f 100644 --- a/hal/lib/athena/HALAthena.cpp +++ b/hal/lib/athena/HALAthena.cpp @@ -253,8 +253,7 @@ static void HALCleanupAtExit() { static void timerRollover(uint64_t currentTime, HAL_NotifierHandle handle) { // reschedule timer for next rollover int32_t status = 0; - HAL_UpdateNotifierAlarm(handle, currentTime + 0x80000000ULL, - &status); + HAL_UpdateNotifierAlarm(handle, currentTime + 0x80000000ULL, &status); } /** diff --git a/hal/lib/athena/SPI.cpp b/hal/lib/athena/SPI.cpp index 7a1ed96ba9..9ddf0f69c2 100644 --- a/hal/lib/athena/SPI.cpp +++ b/hal/lib/athena/SPI.cpp @@ -328,7 +328,8 @@ void HAL_SetSPIHandle(int32_t port, int32_t handle) { } } -static void spiAccumulatorProcess(uint64_t currentTime, HAL_NotifierHandle handle) { +static void spiAccumulatorProcess(uint64_t currentTime, + HAL_NotifierHandle handle) { int32_t status = 0; auto param = HAL_GetNotifierParam(handle, &status); if (param == nullptr) return;