From eb1b2e06e1c79a60f558c6944f649d51f1f4750d Mon Sep 17 00:00:00 2001 From: The Nguyen Date: Thu, 26 Jun 2025 12:47:03 +0700 Subject: [PATCH] drivers: i3c: shell: enable i3c shell support for renesas,ra-i3c This commit introduces support for i3c shell on Renesas RA devices Signed-off-by: The Nguyen --- 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 a870b5f69ed..c02c4bbac67 100644 --- a/drivers/i3c/i3c_shell.c +++ b/drivers/i3c/i3c_shell.c @@ -86,6 +86,7 @@ DT_FOREACH_STATUS_OKAY(ite_it51xxx_i3cm, I3C_CTRL_FN) DT_FOREACH_STATUS_OKAY(ite_it51xxx_i3cs, 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(renesas_ra_i3c, I3C_CTRL_FN) DT_FOREACH_STATUS_OKAY(snps_designware_i3c, I3C_CTRL_FN) DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_FN) /* zephyr-keep-sorted-stop */ @@ -105,6 +106,7 @@ const struct i3c_ctrl i3c_list[] = { DT_FOREACH_STATUS_OKAY(ite_it51xxx_i3cs, 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(renesas_ra_i3c, I3C_CTRL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(snps_designware_i3c, I3C_CTRL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(st_stm32_i3c, I3C_CTRL_LIST_ENTRY) /* zephyr-keep-sorted-stop */