From: Thomas Zimmermann <tzimmermann@suse.de>
To: Icenowy Zheng <zhengxingda@iscas.ac.cn>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>
Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Icenowy Zheng <uwu@icenowy.me>, kernel test robot <lkp@intel.com>
Subject: Re: [PATCH drm-misc-next] drm: verisilicon: use ERR_CAST to cast error pointers
Date: Thu, 5 Mar 2026 11:13:01 +0100 [thread overview]
Message-ID: <4ebfbaf0-63dc-4dff-a9b8-15d91f4a232e@suse.de> (raw)
In-Reply-To: <20260305081705.3671499-1-zhengxingda@iscas.ac.cn>
Am 05.03.26 um 09:17 schrieb Icenowy Zheng:
> Previously I used ERR_PTR(PTR_ERR()) to cast error pointers, but the
> kernel test robot points out that there's a macro called ERR_CAST that
> could do this.
>
> Switch to this macro in the code.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202602242000.bQ0qN6AC-lkp@intel.com/
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
> ---
> drivers/gpu/drm/verisilicon/vs_bridge.c | 2 +-
> drivers/gpu/drm/verisilicon/vs_crtc.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/verisilicon/vs_bridge.c b/drivers/gpu/drm/verisilicon/vs_bridge.c
> index 2a0ad00a94d6d..beebcab37ea48 100644
> --- a/drivers/gpu/drm/verisilicon/vs_bridge.c
> +++ b/drivers/gpu/drm/verisilicon/vs_bridge.c
> @@ -322,7 +322,7 @@ struct vs_bridge *vs_bridge_init(struct drm_device *drm_dev,
> bridge = devm_drm_bridge_alloc(drm_dev->dev, struct vs_bridge, base,
> bridge_funcs);
> if (IS_ERR(bridge))
> - return ERR_PTR(PTR_ERR(bridge));
> + return ERR_CAST(bridge);
>
> bridge->crtc = crtc;
> bridge->intf = intf;
> diff --git a/drivers/gpu/drm/verisilicon/vs_crtc.c b/drivers/gpu/drm/verisilicon/vs_crtc.c
> index f494017130006..3685819e02505 100644
> --- a/drivers/gpu/drm/verisilicon/vs_crtc.c
> +++ b/drivers/gpu/drm/verisilicon/vs_crtc.c
> @@ -172,7 +172,7 @@ struct vs_crtc *vs_crtc_init(struct drm_device *drm_dev, struct vs_dc *dc,
> primary = vs_primary_plane_init(drm_dev, dc);
> if (IS_ERR(primary)) {
> drm_err(drm_dev, "Couldn't create the primary plane\n");
> - return ERR_PTR(PTR_ERR(primary));
> + return ERR_CAST(primary);
> }
>
> ret = drmm_crtc_init_with_planes(drm_dev, &vcrtc->base,
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)
prev parent reply other threads:[~2026-03-05 10:13 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-05 8:17 [PATCH drm-misc-next] drm: verisilicon: use ERR_CAST to cast error pointers Icenowy Zheng
2026-03-05 10:13 ` Thomas Zimmermann [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=4ebfbaf0-63dc-4dff-a9b8-15d91f4a232e@suse.de \
--to=tzimmermann@suse.de \
--cc=airlied@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lkp@intel.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=simona@ffwll.ch \
--cc=uwu@icenowy.me \
--cc=zhengxingda@iscas.ac.cn \
/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