From 080a9e906d2ab231dad5c984d55608a340ddb68c Mon Sep 17 00:00:00 2001 From: Maureen Helm Date: Mon, 3 Jan 2022 10:16:44 -0600 Subject: [PATCH] zephyr: Update include path to reboot.h. The reboot header was moved to a different path in Zephyr v2.6.0. The old path was deprecated for two releases (v2.6.0 and v2.7.0) and will no longer be supported after Zephyr v2.7.0. Signed-off-by: Maureen Helm --- ports/zephyr/modmachine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/zephyr/modmachine.c b/ports/zephyr/modmachine.c index adec9160be..bc984d1b63 100644 --- a/ports/zephyr/modmachine.c +++ b/ports/zephyr/modmachine.c @@ -28,7 +28,7 @@ #include #include -#include +#include #include "py/obj.h" #include "py/runtime.h"