k230_start.c: Fix condition for k230_copy_init_data()

Fixes regression from https://github.com/apache/nuttx/pull/12220

Error: chip/k230_start.c:80:13: error: 'k230_copy_init_data' defined but not used [-Werror=unused-function]
   80 | static void k230_copy_init_data(void)
      |             ^~~~~~~~~~~~~~~~~~~
This commit is contained in:
Ville Juven 2024-08-01 13:10:05 +03:00 committed by Xiang Xiao
parent 6047a9fe14
commit cbb07a595e
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ void k230_start(int mhartid, const char *dtb)
#ifdef CONFIG_RISCV_PERCPU_SCRATCH
riscv_percpu_add_hart(mhartid);
#else
#endif
#ifndef CONFIG_BUILD_KERNEL
k230_copy_init_data();
#endif
}