1# Copyright 2020 Peter Bigot Consulting, LLC
2# SPDX-License-Identifier: Apache-2.0
3
4config REGULATOR_FIXED
5	bool "GPIO-controlled regulators"
6	default y
7	depends on DT_HAS_REGULATOR_FIXED_ENABLED
8	depends on GPIO
9	help
10	  Enable the driver for GPIO-controlled regulators
11
12if REGULATOR_FIXED
13
14config REGULATOR_FIXED_INIT_PRIORITY
15	int "Init priority"
16	default 75
17	help
18	  Device driver initialization priority
19
20endif # REGULATOR_FIXED
21