Message ID | b747c41a478ca984f776165e2f6c99cba7ac862a.1687423204.git.geert+renesas@glider.be (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm: renesas: shmobile: Atomic conversion + DT support | expand |
Hi On 2023/6/22 17:21, Geert Uytterhoeven wrote: > From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> > > The display info width_mm and height_mm fields are set at init time and > never overwritten, don't set them a second time when getting modes. > > Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn> > --- > drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c b/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c > index c775c1d49f0e1ce9..0eeb1410b662d74b 100644 > --- a/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c > +++ b/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c > @@ -618,9 +618,6 @@ static int shmob_drm_connector_get_modes(struct drm_connector *connector) > drm_mode_set_name(mode); > drm_mode_probed_add(connector, mode); > > - connector->display_info.width_mm = sdev->pdata->panel.width_mm; > - connector->display_info.height_mm = sdev->pdata->panel.height_mm; > - > return 1; > } >
diff --git a/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c b/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c index c775c1d49f0e1ce9..0eeb1410b662d74b 100644 --- a/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c +++ b/drivers/gpu/drm/renesas/shmobile/shmob_drm_crtc.c @@ -618,9 +618,6 @@ static int shmob_drm_connector_get_modes(struct drm_connector *connector) drm_mode_set_name(mode); drm_mode_probed_add(connector, mode); - connector->display_info.width_mm = sdev->pdata->panel.width_mm; - connector->display_info.height_mm = sdev->pdata->panel.height_mm; - return 1; }