All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sean Paul <seanpaul@chromium.org>
To: Shawn Guo <shawnguo@kernel.org>
Cc: Xinliang Liu <z.liuxinliang@hisilicon.com>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	Ben Skeggs <bskeggs@redhat.com>
Subject: Re: [PATCH 0/6] Use crtc helper drm_crtc_from_index() for more drivers
Date: Wed, 18 Jan 2017 10:08:09 -0500	[thread overview]
Message-ID: <CAOw6vbLQ=xf-F6LreY3a3_x-dUWzuEmtMWZ5eCbO5G91VTtG-A@mail.gmail.com> (raw)
In-Reply-To: <CAOw6vbKo3UeJmM71y9prm=UG3pKu8FAoR3KLxtcCarAP0BGaMQ@mail.gmail.com>

On Mon, Jan 9, 2017 at 11:11 AM, Sean Paul <seanpaul@chromium.org> wrote:
> On Mon, Jan 9, 2017 at 6:25 AM, Shawn Guo <shawnguo@kernel.org> wrote:
>> From: Shawn Guo <shawn.guo@linaro.org>
>>
>> This is a follow-up series for "[PATCH 0/3] Add CRTC helper
>> drm_crtc_from_index()" per Daniel's comment [1].
>>
>> Basically, it changes some drivers to use helper drm_crtc_from_index()
>> for the vblank code, so that either they do not need to store CRTC
>> pointers in private struct, or the exactly same code for finding CRTC
>> can be saved.
>>
>> Compile tested against the following branch.
>>
>>  git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
>>
>
> Thanks for the patches, Shawn. The entire series is
>
> Reviewed-by: Sean Paul <seanpaul@chromium.org>
>
> I'll apply it to -misc in a week if there are no objections between now and then
>

Didn't see any objections, so the series has been merged.

Sean


> Sean
>
>
>> Shawn
>>
>> [1] http://www.spinics.net/lists/dri-devel/msg128065.html
>>
>> Shawn Guo (6):
>>   drm: exynos: use crtc helper drm_crtc_from_index()
>>   drm: kirin: use crtc helper drm_crtc_from_index()
>>   drm: mediatek: use crtc helper drm_crtc_from_index()
>>   drm: nouveau: use crtc helper drm_crtc_from_index()
>>   drm: tegra: use crtc helper drm_crtc_from_index()
>>   drm: vc4: use crtc helper drm_crtc_from_index()
>>
>>  drivers/gpu/drm/exynos/exynos_drm_crtc.c        |  6 -----
>>  drivers/gpu/drm/exynos/exynos_drm_drv.h         | 10 ++------
>>  drivers/gpu/drm/hisilicon/kirin/kirin_drm_ade.c | 10 +++-----
>>  drivers/gpu/drm/hisilicon/kirin/kirin_drm_drv.h |  1 -
>>  drivers/gpu/drm/mediatek/mtk_drm_crtc.c         |  9 +++----
>>  drivers/gpu/drm/mediatek/mtk_drm_drv.h          |  1 -
>>  drivers/gpu/drm/nouveau/nouveau_display.c       | 33 ++++++++++++++-----------
>>  drivers/gpu/drm/tegra/drm.c                     | 19 +++-----------
>>  drivers/gpu/drm/vc4/vc4_crtc.c                  | 17 ++++++-------
>>  drivers/gpu/drm/vc4/vc4_drv.h                   |  1 -
>>  10 files changed, 38 insertions(+), 69 deletions(-)
>>
>> --
>> 1.9.1
>>
>
>
>
> --
> Sean Paul, Software Engineer, Google / Chromium OS



-- 
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

      reply	other threads:[~2017-01-18 15:08 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-09 11:25 [PATCH 0/6] Use crtc helper drm_crtc_from_index() for more drivers Shawn Guo
2017-01-09 11:25 ` [PATCH 1/6] drm: exynos: use crtc helper drm_crtc_from_index() Shawn Guo
2017-01-18 15:06   ` Sean Paul
2017-01-09 11:25 ` [PATCH 2/6] drm: kirin: " Shawn Guo
2017-01-10  1:21   ` liuxinliang
2017-01-18 15:06     ` Sean Paul
2017-01-09 11:25 ` [PATCH 3/6] drm: mediatek: " Shawn Guo
2017-01-18 15:06   ` Sean Paul
2017-01-09 11:25 ` [PATCH 4/6] drm: nouveau: " Shawn Guo
2017-01-18 15:07   ` Sean Paul
2017-01-09 11:25 ` [PATCH 5/6] drm: tegra: " Shawn Guo
2017-01-18 15:07   ` Sean Paul
2017-01-09 11:25 ` [PATCH 6/6] drm: vc4: " Shawn Guo
2017-01-18 15:07   ` Sean Paul
2017-01-09 16:11 ` [PATCH 0/6] Use crtc helper drm_crtc_from_index() for more drivers Sean Paul
2017-01-18 15:08   ` Sean Paul [this message]

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='CAOw6vbLQ=xf-F6LreY3a3_x-dUWzuEmtMWZ5eCbO5G91VTtG-A@mail.gmail.com' \
    --to=seanpaul@chromium.org \
    --cc=bskeggs@redhat.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=shawnguo@kernel.org \
    --cc=z.liuxinliang@hisilicon.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.