You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/02/14 18:38:10 UTC

[GitHub] [incubator-nuttx] pkarashchenko commented on a change in pull request #5490: risc-v: Let g_cpu_basestack determined at compile time

pkarashchenko commented on a change in pull request #5490:
URL: https://github.com/apache/incubator-nuttx/pull/5490#discussion_r806133654



##########
File path: arch/risc-v/src/k210/k210_head.S
##########
@@ -53,6 +53,13 @@ __start:
   j    2f
 1:
 
+  /* In case of single CPU config, stop here */
+
+#if !(defined CONFIG_SMP) || (CONFIG_SMP_NCPUS == 1)

Review comment:
       ```suggestion
   #if !defined(CONFIG_SMP) || (CONFIG_SMP_NCPUS == 1)
   ```




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

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