wangchdo opened a new pull request, #16981:
URL: https://github.com/apache/nuttx/pull/16981

   
   
    'struct tcb_s **running_task = &g_running_tasks[this_cpu()];'
     was updated to
    'struct tcb_s *running_task = g_running_tasks[this_cpu()];'
   
     'if (*running_task != NULL)
       {
        ( *running_task)->xcp.regs = regs;
       }'
   
       was updated to
   
     'if (running_task != NULL)
       {
         running_task->xcp.regs = regs;
       }'
   
   *Note: Please adhere to [Contributing 
Guidelines](https://github.com/apache/nuttx/blob/master/CONTRIBUTING.md).*
   
   ## Summary
   
   Remove redundant and misleading pointer usage in tricore_doirq()
   
   ## Impact
   
   Fix typo issue in arch tricore implementation, no impact to other nuttx parts
   
   ## Testing
   
   **a2g-tc397-5v-tft board ostest passed**
   
   <img width="586" height="571" alt="image" 
src="https://github.com/user-attachments/assets/f6dca4d2-773e-40da-aee1-03e09f73e313";
 />
   
   
   


-- 
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...@nuttx.apache.org

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

Reply via email to