int irq;
 
        bool is_enabled;
-       bool in_lp_mode;
 
        struct clk *dss_clk;
        struct regmap *syscon;
 
        DSSDBG("dsi_vc_enable_hs(%d, %d)\n", vc, enable);
 
+       if (REG_GET(dsi, DSI_VC_CTRL(vc), 9, 9) == enable)
+               return;
+
        WARN_ON(!dsi_bus_is_locked(dsi));
 
        dsi_vc_enable(dsi, vc, 0);
        /* start the DDR clock by sending a NULL packet */
        if (dsi->vm_timings.ddr_clk_always_on && enable)
                dsi_vc_send_null(dsi, vc, dsi->dsidev->channel);
-
-       dsi->in_lp_mode = !enable;
 }
 
 static void dsi_vc_flush_long_data(struct dsi_data *dsi, int vc)
        struct omap_dss_device *dssdev = &dsi->output;
        int r;
 
-       if (!!(msg->flags & MIPI_DSI_MSG_USE_LPM) != dsi->in_lp_mode)
-               dsi_vc_enable_hs(dssdev, vc,
-                                !(msg->flags & MIPI_DSI_MSG_USE_LPM));
+       dsi_vc_enable_hs(dssdev, vc, !(msg->flags & MIPI_DSI_MSG_USE_LPM));
 
        switch (msg->type) {
        case MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM: