From 45920741dcbebd10e6f6da53d50e91986fe7a131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Wed, 18 Jun 2025 21:09:02 +0200 Subject: [PATCH] drivers: adc: max1125x: fix typo in GPIO config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrected the property assignment for gpo0_enable. Signed-off-by: Benjamin Cabé --- drivers/adc/adc_max1125x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/adc/adc_max1125x.c b/drivers/adc/adc_max1125x.c index d155455ee32..fe037140e91 100644 --- a/drivers/adc/adc_max1125x.c +++ b/drivers/adc/adc_max1125x.c @@ -799,7 +799,7 @@ static DEVICE_API(adc, max1125x_api) = { .gpio.gpio1_enable = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpio1_enable, 0), \ .gpio.gpio0_direction = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpio0_direction, 0), \ .gpio.gpio1_direction = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpio1_direction, 0), \ - .gpo.gpo0_enable = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpo1_enable, 0), \ + .gpo.gpo0_enable = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpo0_enable, 0), \ .gpo.gpo1_enable = DT_PROP_OR(DT_INST_MAX1125X(n, t), gpo1_enable, 0), \ }; \ static struct max1125x_data max##t##_data_##n = { \