[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1560217337.15546.1.camel@mtksdaap41>
Date: Tue, 11 Jun 2019 09:42:17 +0800
From: CK Hu <ck.hu@...iatek.com>
To: Derek Basehore <dbasehore@...omium.org>
CC: <linux-kernel@...r.kernel.org>,
<maarten.lankhorst@...ux.intel.com>, <maxime.ripard@...tlin.com>,
<sean@...rly.run>, <airlied@...ux.ie>, <daniel@...ll.ch>,
<thierry.reding@...il.com>, <sam@...nborg.org>,
<jani.nikula@...ux.intel.com>, <joonas.lahtinen@...ux.intel.com>,
<rodrigo.vivi@...el.com>, <p.zabel@...gutronix.de>,
<matthias.bgg@...il.com>, <dri-devel@...ts.freedesktop.org>,
<intel-gfx@...ts.freedesktop.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-mediatek@...ts.infradead.org>
Subject: Re: [PATCH 5/5] drm/mtk: add panel orientation property
Hi, Derek:
On Mon, 2019-06-10 at 17:22 -0700, Derek Basehore wrote:
> This inits the panel orientation property for the mediatek dsi driver
> if the panel orientation (connector.display_info.panel_orientation) is
> not DRM_MODE_PANEL_ORIENTATION_UNKNOWN.
>
Looks good to me,
Acked-by: CK Hu <ck.hu@...iatek.com>
> Signed-off-by: Derek Basehore <dbasehore@...omium.org>
> ---
> drivers/gpu/drm/mediatek/mtk_dsi.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/gpu/drm/mediatek/mtk_dsi.c b/drivers/gpu/drm/mediatek/mtk_dsi.c
> index 4a0b9150a7bb..08ffdc7526dd 100644
> --- a/drivers/gpu/drm/mediatek/mtk_dsi.c
> +++ b/drivers/gpu/drm/mediatek/mtk_dsi.c
> @@ -782,10 +782,18 @@ static int mtk_dsi_create_connector(struct drm_device *drm, struct mtk_dsi *dsi)
> DRM_ERROR("Failed to attach panel to drm\n");
> goto err_connector_cleanup;
> }
> +
> + ret = drm_connector_init_panel_orientation_property(&dsi->conn);
> + if (ret) {
> + DRM_ERROR("Failed to init panel orientation\n");
> + goto err_panel_detach;
> + }
> }
>
> return 0;
>
> +err_panel_detach:
> + drm_panel_detach(dsi->panel);
> err_connector_cleanup:
> drm_connector_cleanup(&dsi->conn);
> return ret;
Powered by blists - more mailing lists