From 0533e29b130ec9f0355e5e4870da960464e8a048 Mon Sep 17 00:00:00 2001 From: Sara Touqan Date: Tue, 19 Nov 2024 13:00:17 +0200 Subject: [PATCH] shell: Enable I3C shell support for STM32. This commit introduces support for I3C shell on STM32. Signed-off-by: Mohammad Badawi Signed-off-by: Sara Touqan --- drivers/i3c/i3c_shell.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/i3c/i3c_shell.c b/drivers/i3c/i3c_shell.c index 569cf5571eb67fd..c3912a3b6030a2d 100644 --- a/drivers/i3c/i3c_shell.c +++ b/drivers/i3c/i3c_shell.c @@ -82,6 +82,7 @@ struct i3c_ctrl { DT_FOREACH_STATUS_OKAY(cdns_i3c, I3C_CTRL_FN) DT_FOREACH_STATUS_OKAY(nuvoton_npcx_i3c, I3C_CTRL_FN) DT_FOREACH_STATUS_OKAY(nxp_mcux_i3c, I3C_CTRL_FN) +DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_FN) /* zephyr-keep-sorted-stop */ #define I3C_CTRL_LIST_ENTRY(node_id) \ @@ -96,6 +97,7 @@ const struct i3c_ctrl i3c_list[] = { DT_FOREACH_STATUS_OKAY(cdns_i3c, I3C_CTRL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nuvoton_npcx_i3c, I3C_CTRL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_mcux_i3c, I3C_CTRL_LIST_ENTRY) + DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_LIST_ENTRY) /* zephyr-keep-sorted-stop */ };