struct drm_connector    connector;
 
        struct mipi_dsi_device  *dsi;
-       u8                      dsi_lanes;
 
        /* link settings */
        struct tc_edp_link      link;
        regmap_write(tc->regmap, PPI_TX_RX_TA, TTA_GET | TTA_SURE);
        regmap_write(tc->regmap, PPI_LPTXTIMECNT, LPX_PERIOD);
 
-       value = ((LANEENABLE_L0EN << tc->dsi_lanes) - LANEENABLE_L0EN) |
+       value = ((LANEENABLE_L0EN << tc->dsi->lanes) - LANEENABLE_L0EN) |
                LANEENABLE_CLEN;
        regmap_write(tc->regmap, PPI_LANEENABLE, value);
        regmap_write(tc->regmap, DSI_LANEENABLE, value);
 
        tc->dsi = dsi;
 
-       tc->dsi_lanes = dsi_lanes;
-       dsi->lanes = tc->dsi_lanes;
+       dsi->lanes = dsi_lanes;
        dsi->format = MIPI_DSI_FMT_RGB888;
        dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE;