Browse Source

:truck: renaming: move `smp` to `smp_call`

Shell 7 months ago
parent
commit
a573ea06b7

+ 0 - 0
components/drivers/smp/SConscript → components/drivers/smp_call/SConscript


+ 1 - 1
components/drivers/smp/smp.c → components/drivers/smp_call/smp_call.c

@@ -10,7 +10,7 @@
  *                             fixup data racing
  */
 
-#include "smp.h"
+#include "smp_call.h"
 
 #define DBG_TAG "SMP"
 #define DBG_LVL DBG_INFO

+ 0 - 0
components/drivers/smp/smp.h → components/drivers/smp_call/smp_call.h


+ 1 - 1
components/legacy/fdt/Kconfig

@@ -9,7 +9,7 @@ config RT_USING_FDT
             bool "Using fdt fwnode for device drivers"
             default n
         config FDT_USING_DEBUG
-            bool "Using fdt debug function "
+            bool "Using fdt debug function"
             default n
 
     endif

+ 1 - 1
examples/utest/testcases/Kconfig

@@ -15,7 +15,7 @@ rsource "drivers/ipc/Kconfig"
 rsource "posix/Kconfig"
 rsource "mm/Kconfig"
 rsource "tmpfs/Kconfig"
-rsource "smp_ipi/Kconfig"
+rsource "smp_call/Kconfig"
 endif
 
 endmenu

+ 0 - 0
examples/utest/testcases/smp_ipi/Kconfig → examples/utest/testcases/smp_call/Kconfig


+ 0 - 0
examples/utest/testcases/smp_ipi/SConscript → examples/utest/testcases/smp_call/SConscript


+ 1 - 1
examples/utest/testcases/smp_ipi/smp_001_tc.c → examples/utest/testcases/smp_call/smp_001_tc.c

@@ -12,7 +12,7 @@
 #include <rtdevice.h>
 #include <utest.h>
 #include <utest_assert.h>
-#include <smp.h>
+#include <smp_call.h>
 
 #define TEST_COUNT 10000
 

+ 1 - 1
examples/utest/testcases/smp_ipi/smp_002_tc.c → examples/utest/testcases/smp_call/smp_002_tc.c

@@ -11,7 +11,7 @@
 #include <rtdevice.h>
 #include <utest.h>
 #include <utest_assert.h>
-#include <smp.h>
+#include <smp_call.h>
 
 #define PERCPU_TEST_COUNT 10000
 #define NEWLINE_ON 80

+ 1 - 1
examples/utest/testcases/smp_ipi/smp_003_tc.c → examples/utest/testcases/smp_call/smp_003_tc.c

@@ -11,7 +11,7 @@
 #include <rtdevice.h>
 #include <utest.h>
 #include <utest_assert.h>
-#include <smp.h>
+#include <smp_call.h>
 
 #define PERCPU_TEST_COUNT 10000
 #define NEWLINE_ON 80

+ 1 - 1
examples/utest/testcases/smp_ipi/smp_004_tc.c → examples/utest/testcases/smp_call/smp_004_tc.c

@@ -11,7 +11,7 @@
 #include <rtdevice.h>
 #include <utest.h>
 #include <utest_assert.h>
-#include <smp.h>
+#include <smp_call.h>
 
 #define PERCPU_TEST_COUNT 10000
 #define NEWLINE_ON 80

+ 1 - 1
libcpu/aarch64/common/setup.c

@@ -13,7 +13,7 @@
 #define DBG_TAG "cpu.aa64"
 #define DBG_LVL DBG_INFO
 #include <rtdbg.h>
-#include <smp.h>
+#include <smp_call.h>
 #include <cpu.h>
 #include <mmu.h>
 #include <cpuport.h>