From 1c4402bc08d580e62386202b4f4856ab4ee51dd1 Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Fri, 7 Nov 2025 12:57:55 -0700 Subject: [PATCH] drivers: adc: shell: add support for ADI AD7124 ADCs Include the correct compatible for the ADI AD7124 family of ADCs. Signed-off-by: Pete Johanson --- 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 b4501fd1343f4..743b0997fecd6 100644 --- a/drivers/adc/adc_shell.c +++ b/drivers/adc/adc_shell.c @@ -77,6 +77,7 @@ static struct adc_hdl { /* zephyr-keep-sorted-start */ DT_FOREACH_STATUS_OKAY(adi_ad4114_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(adi_ad559x_adc, ADC_HDL_LIST_ENTRY) + DT_FOREACH_STATUS_OKAY(adi_ad7124_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(atmel_sam0_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(atmel_sam_adc, ADC_HDL_LIST_ENTRY) DT_FOREACH_STATUS_OKAY(atmel_sam_afec, ADC_HDL_LIST_ENTRY)