arm/common: Fix nxstyle issue in arch/arm/src/common/up_checkstack.c

and arch/arm/src/common/up_initialize.c
This commit is contained in:
Xiang Xiao 2020-03-24 11:02:56 +08:00 committed by Ouss4
parent bc29b25983
commit 3f860280e5
2 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ static size_t do_stackcheck(uintptr_t alloc, size_t size, bool int_stack)
int j;
ptr = (FAR uint32_t *)start;
for (i = 0; i < size; i += 4*64)
for (i = 0; i < size; i += 4 * 64)
{
for (j = 0; j < 64; j++)
{

View File

@ -139,8 +139,8 @@ void up_initialize(void)
#endif
#ifdef CONFIG_ARCH_DMA
/* Initialize the DMA subsystem if the weak function up_dma_initialize has been
* brought into the build
/* Initialize the DMA subsystem if the weak function up_dma_initialize has
* been brought into the build
*/
#ifdef CONFIG_HAVE_WEAKFUNCTIONS