All of lore.kernel.org
 help / color / mirror / Atom feed
From: Javier Martinez Canillas <javierm@redhat.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
	maarten.lankhorst@linux.intel.com, mripard@kernel.org,
	airlied@linux.ie, daniel@ffwll.ch, bskeggs@redhat.com,
	kherbst@redhat.com, lyude@redhat.com,
	laurent.pinchart@ideasonboard.com,
	kieran.bingham+renesas@ideasonboard.com, jyri.sarha@iki.fi,
	tomba@kernel.org, sam@ravnborg.org
Cc: linux-renesas-soc@vger.kernel.org, nouveau@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 4/4] drm/plane-helper: Provide DRM_PLANE_NON_ATOMIC_FUNCS initializer macro
Date: Fri, 16 Sep 2022 13:24:57 +0200	[thread overview]
Message-ID: <4d492346-36fc-a230-4112-e182caa158af@redhat.com> (raw)
In-Reply-To: <20220909105947.6487-5-tzimmermann@suse.de>

On 9/9/22 12:59, Thomas Zimmermann wrote:
> Provide DRM_PLANE_NON_ATOMIC_FUNCS, which initializes plane functions
> of non-atomic drivers to default values. The macro is not supposed to
> be used in new code, but helps with documenting and finding existing
> users.
> 
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> ---

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

-- 
Best regards,

Javier Martinez Canillas
Core Platforms
Red Hat


WARNING: multiple messages have this Message-ID (diff)
From: Javier Martinez Canillas <javierm@redhat.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
	maarten.lankhorst@linux.intel.com, mripard@kernel.org,
	airlied@linux.ie, daniel@ffwll.ch, bskeggs@redhat.com,
	kherbst@redhat.com, lyude@redhat.com,
	laurent.pinchart@ideasonboard.com,
	kieran.bingham+renesas@ideasonboard.com, jyri.sarha@iki.fi,
	tomba@kernel.org, sam@ravnborg.org
Cc: linux-renesas-soc@vger.kernel.org, nouveau@lists.freedesktop.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [Nouveau] [PATCH 4/4] drm/plane-helper: Provide DRM_PLANE_NON_ATOMIC_FUNCS initializer macro
Date: Fri, 16 Sep 2022 13:24:57 +0200	[thread overview]
Message-ID: <4d492346-36fc-a230-4112-e182caa158af@redhat.com> (raw)
In-Reply-To: <20220909105947.6487-5-tzimmermann@suse.de>

On 9/9/22 12:59, Thomas Zimmermann wrote:
> Provide DRM_PLANE_NON_ATOMIC_FUNCS, which initializes plane functions
> of non-atomic drivers to default values. The macro is not supposed to
> be used in new code, but helps with documenting and finding existing
> users.
> 
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> ---

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

-- 
Best regards,

Javier Martinez Canillas
Core Platforms
Red Hat


  parent reply	other threads:[~2022-09-16 11:25 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-09 10:59 [PATCH 0/4] drm/plane: Remove drm_plane_init(), plus other cleanups Thomas Zimmermann
2022-09-09 10:59 ` Thomas Zimmermann
2022-09-09 10:59 ` [Nouveau] " Thomas Zimmermann
2022-09-09 10:59 ` [PATCH 1/4] drm/plane: Remove drm_plane_init() Thomas Zimmermann
2022-09-09 10:59   ` Thomas Zimmermann
2022-09-09 10:59   ` [Nouveau] " Thomas Zimmermann
2022-09-09 18:24   ` Lyude Paul
2022-09-09 18:24     ` Lyude Paul
2022-09-09 18:24     ` [Nouveau] " Lyude Paul
2022-09-16 11:00   ` Javier Martinez Canillas
2022-09-16 11:00     ` [Nouveau] " Javier Martinez Canillas
2022-09-16 11:05   ` Laurent Pinchart
2022-09-16 11:05     ` Laurent Pinchart
2022-09-16 11:05     ` [Nouveau] " Laurent Pinchart
2022-09-09 10:59 ` [PATCH 2/4] drm/plane: Allocate planes with drm_universal_plane_alloc() Thomas Zimmermann
2022-09-09 10:59   ` Thomas Zimmermann
2022-09-09 10:59   ` [Nouveau] " Thomas Zimmermann
2022-09-16 11:06   ` Laurent Pinchart
2022-09-16 11:06     ` Laurent Pinchart
2022-09-16 11:06     ` [Nouveau] " Laurent Pinchart
2022-09-16 11:31     ` Thomas Zimmermann
2022-09-16 11:31       ` Thomas Zimmermann
2022-09-16 11:31       ` [Nouveau] " Thomas Zimmermann
2022-09-19 14:45       ` Laurent Pinchart
2022-09-19 14:45         ` Laurent Pinchart
2022-09-19 14:45         ` [Nouveau] " Laurent Pinchart
2022-09-16 11:22   ` Javier Martinez Canillas
2022-09-16 11:22     ` [Nouveau] " Javier Martinez Canillas
2022-09-16 11:41     ` Thomas Zimmermann
2022-09-16 11:41       ` [Nouveau] " Thomas Zimmermann
2022-09-16 11:51       ` Javier Martinez Canillas
2022-09-16 11:51         ` [Nouveau] " Javier Martinez Canillas
2022-09-09 10:59 ` [PATCH 3/4] drm/plane-helper: Warn if atomic drivers call non-atomic helpers Thomas Zimmermann
2022-09-09 10:59   ` Thomas Zimmermann
2022-09-09 10:59   ` [Nouveau] " Thomas Zimmermann
2022-09-16 11:20   ` Laurent Pinchart
2022-09-16 11:20     ` Laurent Pinchart
2022-09-16 11:20     ` [Nouveau] " Laurent Pinchart
2022-09-16 11:23   ` Javier Martinez Canillas
2022-09-16 11:23     ` [Nouveau] " Javier Martinez Canillas
2022-09-09 10:59 ` [PATCH 4/4] drm/plane-helper: Provide DRM_PLANE_NON_ATOMIC_FUNCS initializer macro Thomas Zimmermann
2022-09-09 10:59   ` Thomas Zimmermann
2022-09-09 10:59   ` [Nouveau] " Thomas Zimmermann
2022-09-16 11:22   ` Laurent Pinchart
2022-09-16 11:22     ` Laurent Pinchart
2022-09-16 11:22     ` [Nouveau] " Laurent Pinchart
2022-09-16 11:24   ` Javier Martinez Canillas [this message]
2022-09-16 11:24     ` Javier Martinez Canillas
2022-09-09 18:39 ` [PATCH 0/4] drm/plane: Remove drm_plane_init(), plus other cleanups Lyude Paul
2022-09-09 18:39   ` Lyude Paul
2022-09-09 18:39   ` [Nouveau] " Lyude Paul
2022-09-13  9:06 ` [PATCH 1/4] drm/plane: Remove drm_plane_init() jyri.sarha
2022-09-13  9:06   ` jyri.sarha
2022-09-13  9:06   ` [Nouveau] " jyri.sarha

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=4d492346-36fc-a230-4112-e182caa158af@redhat.com \
    --to=javierm@redhat.com \
    --cc=airlied@linux.ie \
    --cc=bskeggs@redhat.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jyri.sarha@iki.fi \
    --cc=kherbst@redhat.com \
    --cc=kieran.bingham+renesas@ideasonboard.com \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=lyude@redhat.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=nouveau@lists.freedesktop.org \
    --cc=sam@ravnborg.org \
    --cc=tomba@kernel.org \
    --cc=tzimmermann@suse.de \
    /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.