zephyr: migrate includes to <zephyr/...>
Zephyr has prefixed all of its includes with <zephyr/...>. While the
_old_ mode can still be used (CONFIG_LEGACY_INCLUDE_PATH) and is still
enabled by default, it's better to be prepared for its removal in the
future.
Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
diff --git a/boot/zephyr/serial_adapter.c b/boot/zephyr/serial_adapter.c
index 18fab9b..4934f6d 100644
--- a/boot/zephyr/serial_adapter.c
+++ b/boot/zephyr/serial_adapter.c
@@ -15,12 +15,12 @@
*/
#include <stdio.h>
-#include <drivers/uart.h>
+#include <zephyr/drivers/uart.h>
#include <assert.h>
#include <string.h>
-#include <zephyr.h>
+#include <zephyr/zephyr.h>
#include "bootutil/bootutil_log.h"
-#include <usb/usb_device.h>
+#include <zephyr/usb/usb_device.h>
#if defined(CONFIG_BOOT_SERIAL_UART) && defined(CONFIG_UART_CONSOLE)
#error Zephyr UART console must been disabled if serial_adapter module is used.