-
Hi, After rebasing my Zephyr repository to the latest commit (305ceba), I'm encountering the following compilation warning when building for the mimxrt1060_evk target board:
I assume this issue might be related to changes introduced in commit 13fa233 by @de-nordic. Am I missing any configuration or something else to resolve this warning? I enable Best Regards. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi. The function is in Flash API. If you take a look at include/zephyr/drivers/flash.h, you will notice that most calls there have _syscall prototype and z_impl implementation. There will be second flash.h file in your build that will have the definition. |
Beta Was this translation helpful? Give feedback.
Hi.
Rebuild syscalls in your build. It seems that you are picking the function declaration but definition is missing.
The function is in Flash API. If you take a look at include/zephyr/drivers/flash.h, you will notice that most calls there have _syscall prototype and z_impl implementation.
There will be second flash.h file in your build that will have the definition.