fusee/sept/exo: minor code style fixes

This commit is contained in:
hexkyz
2020-01-01 17:21:46 +00:00
parent 6d5d97cfcd
commit 2619ccad0c
5 changed files with 22 additions and 14 deletions

View File

@@ -97,9 +97,11 @@ static int tsec_dma_wait_idle()
uint32_t timeout = (get_time_ms() + 10000);
while (!(tsec->TSEC_FALCON_DMATRFCMD & 2))
{
if (get_time_ms() > timeout)
return 0;
}
return 1;
}
@@ -126,8 +128,10 @@ static int tsec_kfuse_wait_ready()
/* Wait for STATE_DONE. */
while (!(KFUSE_STATE & 0x10000))
{
if (get_time_ms() > timeout)
return 0;
}
/* Check for STATE_CRCPASS. */
if (!(KFUSE_STATE & 0x20000))