From 4724c314ae65078f3f20ca4ea159b095ec6a4add Mon Sep 17 00:00:00 2001 From: Bart De Vos Date: Mon, 6 Jan 2025 11:52:50 +0100 Subject: [PATCH] drivers: adc: shell: add support for nxp RW61x The compatible of NXP rw61x family is the 'nxp_gau_adc', which was missing to the list. Signed-off-by: Bart De Vos --- drivers/adc/adc_shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/adc/adc_shell.c b/drivers/adc/adc_shell.c index 7a689ab7804341..a3f11647cc0fff 100644 --- a/drivers/adc/adc_shell.c +++ b/drivers/adc/adc_shell.c @@ -104,6 +104,7 @@ static struct adc_hdl { DT_FOREACH_STATUS_OKAY(nuvoton_npcx_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nuvoton_numaker_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_adc12, ADC_HDL_LIST_ENTRY) + DT_FOREACH_STATUS_OKAY(nxp_gau_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_kinetis_adc16, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_lpc_lpadc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(nxp_mcux_12b1msps_sar, ADC_HDL_LIST_ENTRY)