From: Daniel Vetter <daniel@ffwll.ch>
To: Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
Cc: k.kozlowski@samsung.com, linux-samsung-soc@vger.kernel.org,
jingoohan1@gmail.com,
Carlos Palminha <CARLOS.PALMINHA@synopsys.com>,
dri-devel <dri-devel@lists.freedesktop.org>,
virtualization@lists.linux-foundation.org,
linux-rockchip@lists.infradead.org, kgene@kernel.org,
benjamin.gaignard@linaro.org, vincent.abriou@st.com,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 03/17] drm/exynos: removed optional dummy encoder mode_fixup function.
Date: Tue, 16 Feb 2016 15:31:28 +0100 [thread overview]
Message-ID: <20160216143128.GE32705@phenom.ffwll.local> (raw)
In-Reply-To: <CAMeQTsZLdMOnk7-isneoUyFBbQdiRUsGH6+EhD8W1LNB=80LVQ@mail.gmail.com>
On Mon, Feb 15, 2016 at 02:49:09PM +0100, Patrik Jakobsson wrote:
> Hi Carlos
>
> Any particular reason why this patch isn't squashed with patch 8/17?
I've squashed them while applying.
-Daniel
>
> Thanks
> Patrik
>
>
> On Mon, Feb 15, 2016 at 1:58 PM, Carlos Palminha
> <CARLOS.PALMINHA@synopsys.com> wrote:
> > mode_fixup function for encoder drivers became optional with patch
> > http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha@synopsys.com
> >
> > This patch set nukes all the dummy mode_fixup implementations.
> >
> > (made on top of Daniel topic/drm-misc branch)
> >
> > Signed-off-by: Carlos Palminha <palminha@synopsys.com>
> > ---
> > drivers/gpu/drm/exynos/exynos_drm_dsi.c | 8 --------
> > 1 file changed, 8 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/exynos/exynos_drm_dsi.c b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
> > index e977a81..736115c 100644
> > --- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c
> > +++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
> > @@ -1597,13 +1597,6 @@ static int exynos_dsi_create_connector(struct drm_encoder *encoder)
> > return 0;
> > }
> >
> > -static bool exynos_dsi_mode_fixup(struct drm_encoder *encoder,
> > - const struct drm_display_mode *mode,
> > - struct drm_display_mode *adjusted_mode)
> > -{
> > - return true;
> > -}
> > -
> > static void exynos_dsi_mode_set(struct drm_encoder *encoder,
> > struct drm_display_mode *mode,
> > struct drm_display_mode *adjusted_mode)
> > @@ -1623,7 +1616,6 @@ static void exynos_dsi_mode_set(struct drm_encoder *encoder,
> > }
> >
> > static const struct drm_encoder_helper_funcs exynos_dsi_encoder_helper_funcs = {
> > - .mode_fixup = exynos_dsi_mode_fixup,
> > .mode_set = exynos_dsi_mode_set,
> > .enable = exynos_dsi_enable,
> > .disable = exynos_dsi_disable,
> > --
> > 2.5.0
> >
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
next prev parent reply other threads:[~2016-02-16 14:31 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1455540137.git.palminha@synopsys.com>
2016-02-15 12:57 ` [PATCH v2 01/17] drm/virtio: removed optional dummy encoder mode_fixup function Carlos Palminha
2016-02-15 12:57 ` [PATCH v2 02/17] drm/udl: " Carlos Palminha
2016-02-15 12:58 ` [PATCH v2 03/17] drm/exynos: " Carlos Palminha
2016-02-15 13:49 ` Patrik Jakobsson
[not found] ` <CAMeQTsZLdMOnk7-isneoUyFBbQdiRUsGH6+EhD8W1LNB=80LVQ@mail.gmail.com>
2016-02-15 15:18 ` Carlos Palminha
2016-02-16 14:31 ` Daniel Vetter [this message]
2016-02-15 12:58 ` [PATCH v2 04/17] drm/amdgpu: " Carlos Palminha
2016-02-15 12:59 ` [PATCH v2 05/17] drm/ast: " Carlos Palminha
2016-02-15 12:59 ` [PATCH v2 06/17] drm/bochs: " Carlos Palminha
2016-02-15 12:59 ` [PATCH v2 07/17] drm/cirrus: " Carlos Palminha
2016-02-15 12:59 ` [PATCH v2 08/17] drm/exynos: " Carlos Palminha
2016-02-15 13:00 ` [PATCH v2 09/17] drm/gma500: " Carlos Palminha
2016-02-15 13:00 ` [PATCH v2 10/17] drm/imx: " Carlos Palminha
2016-02-15 13:00 ` [PATCH v2 11/17] drm/msm/mdp: " Carlos Palminha
2016-02-15 13:00 ` [PATCH v2 12/17] drm/mgag200: " Carlos Palminha
2016-02-15 13:00 ` [PATCH v2 13/17] drm/qxl: " Carlos Palminha
2016-02-15 13:01 ` [PATCH v2 14/17] drm/radeon: " Carlos Palminha
2016-02-15 13:01 ` [PATCH v2 15/17] drm/rockchip: " Carlos Palminha
2016-02-15 13:01 ` [PATCH v2 16/17] drm/sti: " Carlos Palminha
2016-02-15 13:01 ` [PATCH v2 17/17] drm/tilcdc: " Carlos Palminha
2016-02-15 14:19 ` [PATCH v2 00/17] drm encoders cleanup: nuke " Christian König
[not found] ` <b704458dc68a73cfb5507933c1df0c2a79e186eb.1455540137.git.palminha@synopsys.com>
2016-02-15 14:24 ` [PATCH v2 09/17] drm/gma500: removed " Patrik Jakobsson
[not found] ` <8bf274e8f6908142a9f940d3f2913e4a735e0caa.1455540137.git.palminha@synopsys.com>
2016-02-15 16:16 ` [PATCH v2 10/17] drm/imx: " Philipp Zabel
[not found] ` <7f47c6a7b00e4f16af672ebf3a277e31ad117e21.1455540137.git.palminha@synopsys.com>
2016-02-15 16:44 ` [PATCH v2 16/17] drm/sti: " Vincent ABRIOU
[not found] ` <cae559aa2c04a906c21ed5ebe4861f92440e6910.1455540137.git.palminha@synopsys.com>
2016-02-16 0:39 ` [PATCH v2 15/17] drm/rockchip: " Mark yao
2016-02-16 14:38 ` [PATCH v2 00/17] drm encoders cleanup: nuke " Daniel Vetter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160216143128.GE32705@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=CARLOS.PALMINHA@synopsys.com \
--cc=benjamin.gaignard@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jingoohan1@gmail.com \
--cc=k.kozlowski@samsung.com \
--cc=kgene@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=patrik.r.jakobsson@gmail.com \
--cc=vincent.abriou@st.com \
--cc=virtualization@lists.linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox