🚚 renaming: move `smp` to `smp_call`

This commit is contained in:
Shell 2024-10-31 13:50:41 +08:00 committed by Rbb666
parent 81a35861fd
commit a573ea06b7
12 changed files with 8 additions and 8 deletions

View File

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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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>