Browse Source

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: Hyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Hyungwon Hwang 10 years ago
parent
commit
b224fa9f25
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/gpu/drm/exynos/exynos_drm_ipp.c

+ 1 - 2
drivers/gpu/drm/exynos/exynos_drm_ipp.c

@@ -459,8 +459,7 @@ static int ipp_validate_mem_node(struct drm_device *drm_dev,
 	unsigned int bpp;
 	unsigned int bpp;
 	int i;
 	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);
 	num_plane = drm_format_num_planes(ipp_cfg->fmt);
 
 
 	/**
 	/**