Home
last modified time | relevance | path

Searched refs:maxUA (Results 1 – 2 of 2) sorted by relevance

/drivers/hdf_core/framework/support/platform/src/regulator/
Dregulator_core.c561 int32_t RegulatorNodeSetCurrent(struct RegulatorNode *node, uint32_t minUA, uint32_t maxUA) in RegulatorNodeSetCurrent() argument
570 if (minUA == node->regulatorInfo.minUa && maxUA == node->regulatorInfo.maxUa) { in RegulatorNodeSetCurrent()
574 if ((minUA > maxUA) || in RegulatorNodeSetCurrent()
576 maxUA > node->regulatorInfo.constraints.maxUa)) { in RegulatorNodeSetCurrent()
578 node->regulatorInfo.name, minUA, maxUA); in RegulatorNodeSetCurrent()
587 int ret = node->ops->setCurrent(node, minUA, maxUA); in RegulatorNodeSetCurrent()
595 node->regulatorInfo.maxUa = maxUA; in RegulatorNodeSetCurrent()
/drivers/hdf_core/framework/support/platform/include/regulator/
Dregulator_core.h174 int32_t RegulatorNodeSetCurrent(struct RegulatorNode *node, uint32_t minUA, uint32_t maxUA);