1# Copyright 2023 EPAM Systems
2# SPDX-License-Identifier: Apache-2.0
3
4config REGULATOR_GPIO
5	bool "GPIO-controlled regulators"
6	default y
7	depends on DT_HAS_REGULATOR_GPIO_ENABLED
8	select GPIO
9	help
10	  Enable the driver for GPIO-controlled regulators
11
12if REGULATOR_GPIO
13
14config REGULATOR_GPIO_INIT_PRIORITY
15	int "Init priority"
16	default 75
17	help
18	  Device driver initialization priority
19
20endif # REGULATOR_GPIO
21