aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/regulator/consumer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h
index 9e0e76992be0..48603506f8de 100644
--- a/include/linux/regulator/consumer.h
+++ b/include/linux/regulator/consumer.h
@@ -140,6 +140,8 @@ struct regulator;
140 * 140 *
141 * @supply: The name of the supply. Initialised by the user before 141 * @supply: The name of the supply. Initialised by the user before
142 * using the bulk regulator APIs. 142 * using the bulk regulator APIs.
143 * @optional: The supply should be considered optional. Initialised by the user
144 * before using the bulk regulator APIs.
143 * @consumer: The regulator consumer for the supply. This will be managed 145 * @consumer: The regulator consumer for the supply. This will be managed
144 * by the bulk API. 146 * by the bulk API.
145 * 147 *
@@ -149,6 +151,7 @@ struct regulator;
149 */ 151 */
150struct regulator_bulk_data { 152struct regulator_bulk_data {
151 const char *supply; 153 const char *supply;
154 bool optional;
152 struct regulator *consumer; 155 struct regulator *consumer;
153 156
154 /* private: Internal use */ 157 /* private: Internal use */