Skip to content

Commit 84ec50a

Browse files
committed
utest: fixed UTEST_SMP_CALL_FUNC
In 66448d9 "utest: smp_call: move from example to components/drivers/smp_call" UTEST_SMP_CALL_FUNC was replaced with RT_UTEST_SMP_CALL_FUNC. However, some files are forgot to do this replacement, so this patch address this. Note: In .config, lines like "# CONFIG_XXX is not set" do not need to be modified; they are comments. Furthermore, for BSPs, running "scons --menuconfig" and save the config will automatically replace them. Therefore, no modification is necessary in this case. Signed-off-by: Chen Wang <[email protected]>
1 parent 22459c2 commit 84ec50a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bsp/rockchip/rk3500/.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ CONFIG_RT_USING_UTESTCASES=y
684684
#
685685
# SMP-Call Testcase
686686
#
687-
CONFIG_UTEST_SMP_CALL_FUNC=y
687+
CONFIG_RT_UTEST_SMP_CALL_FUNC=y
688688
# end of SMP-Call Testcase
689689
# end of RT-Thread Utestcases
690690

bsp/rockchip/rk3500/rtconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@
448448

449449
/* SMP-Call Testcase */
450450

451-
#define UTEST_SMP_CALL_FUNC
451+
#define RT_UTEST_SMP_CALL_FUNC
452452
/* end of SMP-Call Testcase */
453453
/* end of RT-Thread Utestcases */
454454

0 commit comments

Comments
 (0)