summaryrefslogtreecommitdiffstats
path: root/include/regulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/regulator.h')
-rw-r--r--include/regulator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/regulator.h b/include/regulator.h
index a9cb6dedca..7c2a01b687 100644
--- a/include/regulator.h
+++ b/include/regulator.h
@@ -2,6 +2,8 @@
#ifndef __REGULATOR_H
#define __REGULATOR_H
+struct device_d;
+
/* struct regulator is an opaque object for consumers */
struct regulator;
@@ -77,6 +79,8 @@ struct regulator_dev {
const struct regulator_desc *desc;
struct regmap *regmap;
int boot_on;
+ /* the device this regulator device belongs to */
+ struct device_d *dev;
};
struct regulator_ops {