|
@@ -138,7 +138,7 @@ int fsl_dcu_drm_crtc_create(struct fsl_dcu_drm_device *fsl_dev)
|
|
|
{
|
|
|
struct drm_plane *primary;
|
|
|
struct drm_crtc *crtc = &fsl_dev->crtc;
|
|
|
- unsigned int i, j, reg_num;
|
|
|
+ unsigned int i, j;
|
|
|
int ret;
|
|
|
|
|
|
primary = fsl_dcu_drm_primary_create_plane(fsl_dev->drm);
|
|
@@ -154,12 +154,8 @@ int fsl_dcu_drm_crtc_create(struct fsl_dcu_drm_device *fsl_dev)
|
|
|
|
|
|
drm_crtc_helper_add(crtc, &fsl_dcu_drm_crtc_helper_funcs);
|
|
|
|
|
|
- if (!strcmp(fsl_dev->soc->name, "ls1021a"))
|
|
|
- reg_num = LS1021A_LAYER_REG_NUM;
|
|
|
- else
|
|
|
- reg_num = VF610_LAYER_REG_NUM;
|
|
|
for (i = 0; i < fsl_dev->soc->total_layer; i++) {
|
|
|
- for (j = 1; j <= reg_num; j++)
|
|
|
+ for (j = 1; j <= fsl_dev->soc->layer_regs; j++)
|
|
|
regmap_write(fsl_dev->regmap, DCU_CTRLDESCLN(i, j), 0);
|
|
|
}
|
|
|
regmap_update_bits(fsl_dev->regmap, DCU_DCU_MODE,
|