Home
last modified time | relevance | path

Searched refs:REGULATOR_ALWAYS_ON (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.4.0/drivers/regulator/
Dregulator_common.c89 if ((config->flags & REGULATOR_ALWAYS_ON) != 0U) { in regulator_enable()
119 if ((config->flags & REGULATOR_ALWAYS_ON) != 0U) { in regulator_is_enabled()
147 if ((config->flags & REGULATOR_ALWAYS_ON) != 0U) { in regulator_disable()
/Zephyr-Core-3.4.0/include/zephyr/drivers/
Dregulator.h107 #define REGULATOR_ALWAYS_ON BIT(0) macro
111 #define REGULATOR_INIT_ENABLED (REGULATOR_ALWAYS_ON | REGULATOR_BOOT_ON)
168 REGULATOR_ALWAYS_ON) | \
/Zephyr-Core-3.4.0/tests/drivers/regulator/api/src/
Dmain.c79 zassert_equal(config->flags, REGULATOR_ALWAYS_ON); in ZTEST()