Skip to content

Commit 8160f05

Browse files
committed
drivers: regulator: Update Kconfig
* Utilize DT_HAS_<COMPAT>_ENABLED for devicetree based drivers Signed-off-by: Kumar Gala <galak@kernel.org>
1 parent 120df9a commit 8160f05

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

drivers/regulator/Kconfig.fixed

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Copyright 2020 Peter Bigot Consulting, LLC
22
# SPDX-License-Identifier: Apache-2.0
33

4-
DT_COMPAT_REGULATOR_FIXED := regulator-fixed
5-
64
config REGULATOR_FIXED
75
bool "GPIO-controlled regulators"
8-
default $(dt_compat_enabled,$(DT_COMPAT_REGULATOR_FIXED))
6+
default y
7+
depends on DT_HAS_REGULATOR_FIXED_ENABLED
98
depends on GPIO
109
help
1110
Enable the driver for GPIO-controlled regulators

drivers/regulator/Kconfig.pmic

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Copyright (c) 2021, NXP
22
# SPDX -License-Identifier: Apache-2.0
33

4-
DT_COMPAT_PMIC_REG := regulator-pmic
5-
64
config REGULATOR_PMIC
75
bool "PMIC Regulator Driver"
8-
depends on $(dt_compat_enabled,$(DT_COMPAT_PMIC_REG))
9-
default $(dt_compat_enabled,$(DT_COMPAT_PMIC_REG))
6+
default y
7+
depends on DT_HAS_REGULATOR_PMIC_ENABLED
108
select I2C
119
help
1210
Enable the pmic regulator driver

0 commit comments

Comments
 (0)