Commit b354f68f authored by Philipp Zabel's avatar Philipp Zabel

reset: remove unused device pointer from struct reset_control

Commit 0c5b2b91 ("reset: Mark function as static and remove unused
function in core.c") removed the only user of the device pointer in
struct reset_control. As it is now unused, remove it.
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent d1f15aa0
...@@ -30,7 +30,6 @@ static LIST_HEAD(reset_controller_list); ...@@ -30,7 +30,6 @@ static LIST_HEAD(reset_controller_list);
*/ */
struct reset_control { struct reset_control {
struct reset_controller_dev *rcdev; struct reset_controller_dev *rcdev;
struct device *dev;
unsigned int id; unsigned int id;
}; };
...@@ -236,16 +235,10 @@ EXPORT_SYMBOL_GPL(of_reset_control_get); ...@@ -236,16 +235,10 @@ EXPORT_SYMBOL_GPL(of_reset_control_get);
*/ */
struct reset_control *reset_control_get(struct device *dev, const char *id) struct reset_control *reset_control_get(struct device *dev, const char *id)
{ {
struct reset_control *rstc;
if (!dev) if (!dev)
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
rstc = of_reset_control_get(dev->of_node, id); return of_reset_control_get(dev->of_node, id);
if (!IS_ERR(rstc))
rstc->dev = dev;
return rstc;
} }
EXPORT_SYMBOL_GPL(reset_control_get); EXPORT_SYMBOL_GPL(reset_control_get);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment