commit | 34dd9e707d7c836433741f75f69e6ec75816663e | [log] [tgz] |
---|---|---|
author | Gerard Marull-Paretas <gerard@teslabs.com> | Mon May 09 12:13:12 2022 +0200 |
committer | Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no> | Thu Jun 16 21:47:43 2022 +0200 |
tree | a7c5b45395e8de7ce78c512bf66feea1e20fdd1f | |
parent | 3cd2cece690c66186b9e1eaa74163e0d3cca4af0 [diff] [blame] |
zephyr: use <zephyr/kernel.h> <zephyr/zephyr.h> is just a shim to the <zephyr/kernel.h> header, better use it directly as it is explicit that Kernel APIs are being included. Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
diff --git a/boot/zephyr/os.c b/boot/zephyr/os.c index 8588a91..048cb2b 100644 --- a/boot/zephyr/os.c +++ b/boot/zephyr/os.c
@@ -17,7 +17,7 @@ * under the License. */ -#include <zephyr/zephyr.h> +#include <zephyr/kernel.h> #include <string.h> #include "os/os_heap.h"