Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c795f305 authored by Tobias Jordan's avatar Tobias Jordan Committed by Philipp Zabel
Browse files

gpu: ipu-v3: pre: fix device node leak in ipu_pre_lookup_by_phandle



Before returning, call of_node_put() for the device node returned by
of_parse_phandle().

Fixes: d2a34232 ("gpu: ipu-v3: add driver for Prefetch Resolve Engine")
Signed-off-by: default avatarTobias Jordan <Tobias.Jordan@elektrobit.com>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent 6d36b7fe
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -129,11 +129,14 @@ ipu_pre_lookup_by_phandle(struct device *dev, const char *name, int index)
		if (pre_node == pre->dev->of_node) {
			mutex_unlock(&ipu_pre_list_mutex);
			device_link_add(dev, pre->dev, DL_FLAG_AUTOREMOVE);
			of_node_put(pre_node);
			return pre;
		}
	}
	mutex_unlock(&ipu_pre_list_mutex);

	of_node_put(pre_node);

	return NULL;
}