You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
679 B
26 lines
679 B
# Copyright (c) 2022 Nordic Semiconductor ASA |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
config REGULATOR_FAKE |
|
bool "Fake regulator driver" |
|
default y |
|
depends on DT_HAS_ZEPHYR_FAKE_REGULATOR_ENABLED |
|
help |
|
Enable support for the FFF-based fake regulator driver. |
|
|
|
if REGULATOR_FAKE |
|
|
|
config REGULATOR_FAKE_COMMON_INIT_PRIORITY |
|
int "Fake regulator driver init priority (common part)" |
|
default 75 |
|
help |
|
Init priority for the fake regulator driver (common part). |
|
|
|
config REGULATOR_FAKE_INIT_PRIORITY |
|
int "Fake regulator driver init priority" |
|
default 76 |
|
help |
|
Init priority for the fake regulator driver. It must be |
|
greater than REGULATOR_FAKE_COMMON_INIT_PRIORITY. |
|
|
|
endif
|
|
|