drivers: console: Fix path to mcumgr header

The mcumgr header files are now in include/mgmt/mcumgr/, so reflect this
change in the UART console implementation.

Fixes #30261.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2020-11-26 17:15:18 +01:00 committed by Carles Cufí
parent e39ae14f9b
commit ebf2e76740

View file

@ -32,7 +32,7 @@
#include <sys/atomic.h>
#include <sys/printk.h>
#ifdef CONFIG_UART_CONSOLE_MCUMGR
#include "mgmt/serial.h"
#include "mgmt/mcumgr/serial.h"
#endif
static const struct device *uart_console_dev;