From 7406b77c773cc82b8d57195852210d07fa414313 Mon Sep 17 00:00:00 2001 From: Marco Felsch Date: Mon, 28 Sep 2020 17:50:32 +0200 Subject: regulator: add device reference to regulator_dev It is useful to know the physical device a regulator_dev belongs to. This is at least needed for the new deep-probe mechanism. It is also useful for a few regulator drivers to drop their own device_d reference. Signed-off-by: Marco Felsch Signed-off-by: Sascha Hauer --- include/regulator.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/regulator.h') diff --git a/include/regulator.h b/include/regulator.h index a9cb6dedca..44eee7b0ad 100644 --- a/include/regulator.h +++ b/include/regulator.h @@ -77,6 +77,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 { -- cgit v1.2.3