Hi, On Tue, Feb 25, 2020 at 03:58:23PM +0200, Laurent Pinchart wrote: > Hi Sebastian, > > Thank you for the patch. > > On Tue, Feb 25, 2020 at 12:20:35AM +0100, Sebastian Reichel wrote: > > This replaces OMAP specific enum for pixel format with > > common implementation. > > > > Signed-off-by: Sebastian Reichel > > --- > > .../gpu/drm/omapdrm/displays/panel-dsi-cm.c | 2 +- > > drivers/gpu/drm/omapdrm/dss/dsi.c | 49 +++++++------------ > > drivers/gpu/drm/omapdrm/dss/omapdss.h | 10 +--- > > 3 files changed, 20 insertions(+), 41 deletions(-) > > > > diff --git a/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c b/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > > index e7fe5d702337..e6ebfc35243e 100644 > > --- a/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > > +++ b/drivers/gpu/drm/omapdrm/displays/panel-dsi-cm.c > > @@ -595,7 +595,7 @@ static int dsicm_power_on(struct panel_drv_data *ddata) > > int r; > > struct omap_dss_dsi_config dsi_config = { > > .mode = OMAP_DSS_DSI_CMD_MODE, > > - .pixel_format = OMAP_DSS_DSI_FMT_RGB888, > > + .pixel_format = MIPI_DSI_FMT_RGB888, > > .vm = &ddata->vm, > > .hs_clk_min = 150000000, > > .hs_clk_max = 300000000, > > diff --git a/drivers/gpu/drm/omapdrm/dss/dsi.c b/drivers/gpu/drm/omapdrm/dss/dsi.c > > index 8c39823a8295..bb2548d091ef 100644 > > --- a/drivers/gpu/drm/omapdrm/dss/dsi.c > > +++ b/drivers/gpu/drm/omapdrm/dss/dsi.c > > @@ -34,6 +34,7 @@ > > #include > > > > #include