From 883f604f1274e38a5cc4781e38c35953d68941c9 Mon Sep 17 00:00:00 2001 From: Daniel DeGrasse Date: Wed, 25 Oct 2023 13:40:34 +0000 Subject: [PATCH] soc: arm: nxp_imx: rt11xx: allow user to disable CONFIG_ADJUST_DCDC Allow user to disable CONFIG_ADJUST_DCDC for their board, rather than selecting it at the SOC level. The symbol still defaults to enabled, preserving existing behavior unless a user explicitly chooses to disable it. Signed-off-by: Daniel DeGrasse --- soc/arm/nxp_imx/rt/Kconfig.soc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/soc/arm/nxp_imx/rt/Kconfig.soc b/soc/arm/nxp_imx/rt/Kconfig.soc index 253e316548e..0058993e825 100644 --- a/soc/arm/nxp_imx/rt/Kconfig.soc +++ b/soc/arm/nxp_imx/rt/Kconfig.soc @@ -1,6 +1,6 @@ # i.MX RT series -# Copyright (c) 2017-2021, NXP +# Copyright 2017-2021,2023 NXP # SPDX-License-Identifier: Apache-2.0 choice @@ -339,7 +339,6 @@ config SOC_MIMXRT1176_CM7 select INIT_VIDEO_PLL select HAS_MCUX_EDMA select CPU_HAS_FPU_DOUBLE_PRECISION - select ADJUST_DCDC select BYPASS_LDO_LPSR select ADJUST_LDO select HAS_MCUX_PWM @@ -408,7 +407,6 @@ config SOC_MIMXRT1166_CM7 select INIT_VIDEO_PLL select HAS_MCUX_EDMA select CPU_HAS_FPU_DOUBLE_PRECISION - select ADJUST_DCDC select BYPASS_LDO_LPSR select ADJUST_LDO select HAS_MCUX_PWM @@ -686,6 +684,7 @@ config DCDC_VALUE config ADJUST_DCDC bool "Adjust internal DCDC output" + default y if SOC_SERIES_IMX_RT11XX config BYPASS_LDO_LPSR bool "Bypass LDO lpsr"