apache-mynewt-bot commented on PR #2855:
URL: https://github.com/apache/mynewt-core/pull/2855#issuecomment-1167053315

   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is 
[here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### hw/mcu/nordic/nrf5340/src/hal_system_start.c
   <details>
   
   ```diff
   @@ -144,13 +146,13 @@
         * Normal loop here is inlined by GCC to call to memset hence asm 
version of
         * memset that does not use stack (that just get erased).
         */
   -    asm volatile("    mov     r0, #0        \n"
   -                 "1:  stmia   %0!, {r0}     \n"
   -                 "    cmp     %0, %1        \n"
   -                 "    blt     1b            \n"
   -        :
   -        : "r" (&_ram_start), "r" (&__StackTop)
   -        : "r0");
   +    asm volatile ("    mov     r0, #0        \n"
   +                  "1:  stmia   %0!, {r0}     \n"
   +                  "    cmp     %0, %1        \n"
   +                  "    blt     1b            \n"
   +                  :
   +                  : "r" (&_ram_start), "r" (&__StackTop)
   +                  : "r0");
        /* Application startup code expects interrupts to be enabled */
        __enable_irq();
    
   ```
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to