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

Commit b224fa9f authored by Hyungwon Hwang's avatar Hyungwon Hwang Committed by Inki Dae
Browse files

drm/exynos: ipp: fix wrong index referencing a config element



Config depends on the opreation. So it must be referenced by an
operation id, not a property id.

Signed-off-by: default avatarHyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent 0e480f6f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -459,8 +459,7 @@ static int ipp_validate_mem_node(struct drm_device *drm_dev,
	unsigned int bpp;
	int i;

	/* The property id should already be varified */
	ipp_cfg = &c_node->property.config[m_node->prop_id];
	ipp_cfg = &c_node->property.config[m_node->ops_id];
	num_plane = drm_format_num_planes(ipp_cfg->fmt);

	/**