Signed-off-by: Tomeu Vizoso <[email protected]>
---

 drivers/reset/core.c  | 13 +++++++++++++
 include/linux/reset.h | 10 ++++++++++
 2 files changed, 23 insertions(+)

diff --git a/drivers/reset/core.c b/drivers/reset/core.c
index 7955e00d04d4..a890c401dbf0 100644
--- a/drivers/reset/core.c
+++ b/drivers/reset/core.c
@@ -303,3 +303,16 @@ int device_reset(struct device *dev)
        return ret;
 }
 EXPORT_SYMBOL_GPL(device_reset);
+
+int devm_acquire_reset(struct device *dev,
+                      const struct devm_resource *resource)
+{
+       struct reset_control **rstp = dev_get_drvdata(dev) + resource->offset;
+
+       *rstp = devm_reset_control_get(dev, resource->name);
+       if (IS_ERR(*rstp))
+               return PTR_ERR(*rstp);
+
+       return 0;
+}
+EXPORT_SYMBOL_GPL(devm_acquire_reset);
diff --git a/include/linux/reset.h b/include/linux/reset.h
index da5602bd77d7..1771c5cbfeb1 100644
--- a/include/linux/reset.h
+++ b/include/linux/reset.h
@@ -3,6 +3,7 @@
 
 struct device;
 struct device_node;
+struct devm_resource;
 struct reset_control;
 
 #ifdef CONFIG_RESET_CONTROLLER
@@ -38,6 +39,15 @@ static inline struct reset_control 
*devm_reset_control_get_optional(
 struct reset_control *of_reset_control_get(struct device_node *node,
                                           const char *id);
 
+int devm_acquire_reset(struct device *dev,
+                      const struct devm_resource *resource);
+
+#define DEVM_RESET(_struct, _member, _name) {                          \
+       .initfunc = devm_acquire_reset,                                 \
+       .offset = offsetof_t(struct _struct, _member, struct reset_control *),\
+       .name = _name,                                                  \
+}
+
 #else
 
 static inline int reset_control_reset(struct reset_control *rstc)
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to