arch/xtensa/src/esp32/esp32_cpustart.c: nxstyle fixes

The remaining errors:

    Mixed case identifier found

I didn't fix them because they were on ROM symbols,
which are not supposed to obey NuttX's coding style.
This commit is contained in:
YAMAMOTO Takashi 2020-03-12 11:07:46 +09:00 committed by patacongo
parent 266849549a
commit 086e8ffb12

View File

@ -88,6 +88,7 @@ static inline void xtensa_registerdump(FAR struct tcb_s *tcb)
_info("CPU%d:\n", up_cpu_index());
/* Dump the startup registers */
/* To be provided */
}
#else
@ -153,8 +154,8 @@ void xtensa_appcpu_start(void)
register uint32_t *ptr;
register int i;
/* If stack debug is enabled, then fill the stack with a recognizable value
* that we can use later to test for high water marks.
/* If stack debug is enabled, then fill the stack with a recognizable
* value that we can use later to test for high water marks.
*/
for (i = 0, ptr = (uint32_t *)tcb->stack_alloc_ptr;