hal: use s/<zephyr/zephyr.h>/<zephyr/kernel.h>

<zephyr/zephyr.h> is just a shim to <zephyr/kernel.h>.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2022-08-25 13:21:57 +02:00
parent b8f1aaf276
commit 000b944a78
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#ifndef STUBS_H_
#define STUBS_H_
#include <zephyr/zephyr.h>
#include <zephyr/kernel.h>
#define STUB(fmt, args...) printk("%s(): %d: STUB: " fmt "\n", __func__, __LINE__, ##args)

View File

@ -61,7 +61,7 @@
#include <stdbool.h>
#include <stddef.h>
#include <zephyr/zephyr.h>
#include <zephyr/kernel.h>
#ifdef __cplusplus
extern "C" {