regulator: Make bulk API support optional supplies
Make it possible to use the bulk API with optional supplies, by allowing the consumer to marking supplies as optional in the regulator_bulk_data. Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8005c49d9a
commit
3ff3f518a1
3 changed files with 12 additions and 4 deletions
|
|
@ -140,6 +140,8 @@ struct regulator;
|
|||
*
|
||||
* @supply: The name of the supply. Initialised by the user before
|
||||
* using the bulk regulator APIs.
|
||||
* @optional: The supply should be considered optional. Initialised by the user
|
||||
* before using the bulk regulator APIs.
|
||||
* @consumer: The regulator consumer for the supply. This will be managed
|
||||
* by the bulk API.
|
||||
*
|
||||
|
|
@ -149,6 +151,7 @@ struct regulator;
|
|||
*/
|
||||
struct regulator_bulk_data {
|
||||
const char *supply;
|
||||
bool optional;
|
||||
struct regulator *consumer;
|
||||
|
||||
/* private: Internal use */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue