On Fri, Mar 3, 2023 at 8:38 PM Maxime Ripard <maxime@xxxxxxxxxx> wrote: > > On Fri, Mar 03, 2023 at 08:21:34PM +0530, Jagan Teki wrote: > > +static int samsung_dsim_host_detach(struct mipi_dsi_host *host, > > + struct mipi_dsi_device *device) > > +{ > > + struct samsung_dsim *dsi = host_to_dsi(host); > > + const struct samsung_dsim_plat_data *pdata = dsi->plat_data; > > + > > + if (dsi->out_bridge->funcs->detach) > > + dsi->out_bridge->funcs->detach(dsi->out_bridge); > > You should never call into the bridge ops directly. If there's an issue > in the helpers somewhere else, fix that instead. Agreed, it was added by mistake and it was removed in Exynos. I will fix it. Jagan.