1# Copyright (c) 2022 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config REGULATOR_FAKE
5	bool "Fake regulator driver"
6	default y
7	depends on DT_HAS_ZEPHYR_FAKE_REGULATOR_ENABLED
8	help
9	  Enable support for the FFF-based fake regulator driver.
10
11if REGULATOR_FAKE
12
13config REGULATOR_FAKE_COMMON_INIT_PRIORITY
14	int "Fake regulator driver init priority (common part)"
15	default 75
16	help
17	  Init priority for the fake regulator driver (common part).
18
19config REGULATOR_FAKE_INIT_PRIORITY
20	int "Fake regulator driver init priority"
21	default 76
22	help
23	  Init priority for the fake regulator driver. It must be
24	  greater than REGULATOR_FAKE_COMMON_INIT_PRIORITY.
25
26endif
27