diff options
| author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-08-26 00:13:40 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-11-20 11:06:54 +0100 |
| commit | 0627e8623eb5dbcbd54a30b3d3fd140b8eb95a6e (patch) | |
| tree | 9c646e385f7c24bfc8cf5c401dec050cfc9f93c4 | |
| parent | c3e148aba95a05c90f8495a8bd339c4e348945a7 (diff) | |
| download | linux-0627e8623eb5dbcbd54a30b3d3fd140b8eb95a6e.tar.gz linux-0627e8623eb5dbcbd54a30b3d3fd140b8eb95a6e.tar.bz2 linux-0627e8623eb5dbcbd54a30b3d3fd140b8eb95a6e.zip | |
media: i2c: max9286: Fix some redundant of_node_put() calls
[ Upstream commit 0822315e46b400f611cba1193456ee6a5dc3e41d ]
This is odd to have a of_node_put() just after a for_each_child_of_node()
or a for_each_endpoint_of_node() loop. It should already be called
during the last iteration.
Remove these calls.
Fixes: 66d8c9d2422d ("media: i2c: Add MAX9286 driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
| -rw-r--r-- | drivers/media/i2c/max9286.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/media/i2c/max9286.c b/drivers/media/i2c/max9286.c index 62ce27552dd3..a358eb3fe0f4 100644 --- a/drivers/media/i2c/max9286.c +++ b/drivers/media/i2c/max9286.c @@ -1143,7 +1143,6 @@ static int max9286_parse_dt(struct max9286_priv *priv) i2c_mux_mask |= BIT(id); } - of_node_put(node); of_node_put(i2c_mux); /* Parse the endpoints */ @@ -1207,7 +1206,6 @@ static int max9286_parse_dt(struct max9286_priv *priv) priv->source_mask |= BIT(ep.port); priv->nsources++; } - of_node_put(node); priv->route_mask = priv->source_mask; |
