zephyr: prefix kernel include with <zephyr/...>

LVGL could not be built with CONFIG_LEGACY_INCLUDE_PATH=n because the
Zephyr <kernel.h> include was not prefixed. Replaced "" with <> as it is
not a local include.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2022-05-25 10:06:36 +02:00 committed by Carles Cufí
parent 9955c3e1e4
commit df717ac87a
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
/* HAL settings */
#define LV_TICK_CUSTOM 1
#define LV_TICK_CUSTOM_INCLUDE "kernel.h"
#define LV_TICK_CUSTOM_INCLUDE <zephyr/kernel.h>
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (k_uptime_get_32())
/* Misc settings */