The "pmic" driver was in reality a driver for NXP PCA9420 PMIC. There's no "universal PMIC". While the driver may work for other NXP PMICs, it is clearly not generic for other vendors PMIC. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
28 lines
610 B
Plaintext
28 lines
610 B
Plaintext
# Copyright 2020 Peter Bigot Consulting, LLC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig REGULATOR
|
|
bool "Regulator drivers"
|
|
select ONOFF
|
|
help
|
|
Include drivers for current/voltage regulators in system config
|
|
|
|
if REGULATOR
|
|
|
|
config REGULATOR_SHELL
|
|
bool "Regulator shell"
|
|
default y
|
|
depends on SHELL
|
|
help
|
|
Enable regulator shell framework, for interacting with regulators via
|
|
the shell interface
|
|
|
|
module = REGULATOR
|
|
module-str = regulator
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/regulator/Kconfig.fixed"
|
|
source "drivers/regulator/Kconfig.pca9420"
|
|
|
|
endif # REGULATOR
|