]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
video: mxc: ldb: check for matching disp_id and ipu_id when checking for same LDB...
authorLothar Waßmann <LW@KARO-electronics.de>
Thu, 26 Feb 2015 11:23:39 +0000 (12:23 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 27 Feb 2015 08:24:24 +0000 (09:24 +0100)
drivers/video/mxc/ldb.c

index 6d594425a2040f4f79a5105e2c8886b59ae9c7bd..9ee26f8e789a164ed440ac26bf31de887712936a 100644 (file)
@@ -605,16 +605,16 @@ static int ldb_disp_init(struct mxc_dispdrv_handle *disp,
                        }
                } else if (((ldb->mode == LDB_SEP0) || (ldb->mode == LDB_SEP1))
                                && is_imx6_ldb(plat_data)) {
                        }
                } else if (((ldb->mode == LDB_SEP0) || (ldb->mode == LDB_SEP1))
                                && is_imx6_ldb(plat_data)) {
-                       if (plat_data->disp_id == plat_data->sec_disp_id) {
+                       if (plat_data->ipu_id == plat_data->sec_ipu_id &&
+                               plat_data->disp_id == plat_data->sec_disp_id) {
                                dev_err(&ldb->pdev->dev,
                                        "For LVDS separate mode,"
                                        "two DIs should be different!\n");
                                return -EINVAL;
                        }
 
                                dev_err(&ldb->pdev->dev,
                                        "For LVDS separate mode,"
                                        "two DIs should be different!\n");
                                return -EINVAL;
                        }
 
-                       if (((!plat_data->disp_id) && (ldb->mode == LDB_SEP1))
-                               || ((plat_data->disp_id) &&
-                                       (ldb->mode == LDB_SEP0))) {
+                       if ((!plat_data->disp_id && ldb->mode == LDB_SEP1) ||
+                               (plat_data->disp_id && ldb->mode == LDB_SEP0)) {
                                dev_dbg(&ldb->pdev->dev,
                                        "LVDS separate mode:"
                                        "swap DI configuration!\n");
                                dev_dbg(&ldb->pdev->dev,
                                        "LVDS separate mode:"
                                        "swap DI configuration!\n");
@@ -722,7 +722,8 @@ static int ldb_disp_init(struct mxc_dispdrv_handle *disp,
                        setting->dev_id = plat_data->ipu_id;
                        setting->disp_id = !plat_data->disp_id;
                }
                        setting->dev_id = plat_data->ipu_id;
                        setting->disp_id = !plat_data->disp_id;
                }
-               if (setting->disp_id == ldb->setting[0].di) {
+               if (setting->dev_id == ldb->setting[0].ipu &&
+                       setting->disp_id == ldb->setting[0].di) {
                        dev_err(&ldb->pdev->dev, "Err: for second ldb disp in"
                                "separate mode, DI should be different!\n");
                        return -EINVAL;
                        dev_err(&ldb->pdev->dev, "Err: for second ldb disp in"
                                "separate mode, DI should be different!\n");
                        return -EINVAL;