From 35abb312849efbd496542d1c6805aa2b35ca0db6 Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Thu, 23 Jan 2025 23:28:22 +0000 Subject: [PATCH] i2c_shell: add missing i3c include This is necessary for the I3C device type check, tested with: west build -p -b nucleo_h563zi samples/subsys/shell/shell_module -DCONFIG_I2C=y -DCONFIG_I2C_SHELL=y -DCONFIG_I3C=y and west build -p -b nucleo_h563zi samples/subsys/shell/shell_module -DCONFIG_I2C=y -DCONFIG_I2C_SHELL=y -DCONFIG_I3C=n Signed-off-by: Fabio Baltieri --- drivers/i2c/i2c_shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i2c/i2c_shell.c b/drivers/i2c/i2c_shell.c index 55e0659f1afb..0817f27aae50 100644 --- a/drivers/i2c/i2c_shell.c +++ b/drivers/i2c/i2c_shell.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include