From: Thierry Reding <thierry.reding@gmail.com>
To: Yangtao Li <frank.li@vivo.com>
Cc: Mikko Perttunen <mperttunen@nvidia.com>,
David Airlie <airlied@gmail.com>, Daniel Vetter <daniel@ffwll.ch>,
Jonathan Hunter <jonathanh@nvidia.com>,
dri-devel@lists.freedesktop.org, linux-tegra@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 12/18] drm/tegra: dpaux: Convert to devm_platform_ioremap_resource()
Date: Fri, 7 Jul 2023 14:28:19 +0200 [thread overview]
Message-ID: <ZKgE407-trIp_7HV@orome> (raw)
In-Reply-To: <20230707072034.48977-12-frank.li@vivo.com>
[-- Attachment #1: Type: text/plain, Size: 1377 bytes --]
On Fri, Jul 07, 2023 at 03:20:28PM +0800, Yangtao Li wrote:
> Use devm_platform_ioremap_resource() to simplify code.
>
> Signed-off-by: Yangtao Li <frank.li@vivo.com>
> ---
> drivers/gpu/drm/tegra/dpaux.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/tegra/dpaux.c b/drivers/gpu/drm/tegra/dpaux.c
> index 4d2677dcd831..f120897ce4b3 100644
> --- a/drivers/gpu/drm/tegra/dpaux.c
> +++ b/drivers/gpu/drm/tegra/dpaux.c
> @@ -447,7 +447,6 @@ static const struct pinmux_ops tegra_dpaux_pinmux_ops = {
> static int tegra_dpaux_probe(struct platform_device *pdev)
> {
> struct tegra_dpaux *dpaux;
> - struct resource *regs;
> u32 value;
> int err;
>
> @@ -461,14 +460,13 @@ static int tegra_dpaux_probe(struct platform_device *pdev)
> INIT_LIST_HEAD(&dpaux->list);
> dpaux->dev = &pdev->dev;
>
> - regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - dpaux->regs = devm_ioremap_resource(&pdev->dev, regs);
> + dpaux->regs = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(dpaux->regs))
> return PTR_ERR(dpaux->regs);
>
> dpaux->irq = platform_get_irq(pdev, 0);
> if (dpaux->irq < 0)
> - return -ENXIO;
> + return dpaux->irq;
This change has nothing to do with what the commit message says. It
looks correct, but it should be a separate patch.
Thierry
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2023-07-07 12:28 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-07 7:20 [PATCH 01/18] drm/renesas: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-07 7:20 ` [PATCH 02/18] gpu: ipu-v3: pre: " Yangtao Li
2023-07-07 8:20 ` Philipp Zabel
2023-07-07 7:20 ` [PATCH 03/18] drm/rockchip: dsi: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-07 7:20 ` [PATCH 04/18] drm: kirin: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-07 7:20 ` [PATCH 05/18] drm/tegra: hdmi: " Yangtao Li
2023-07-07 7:20 ` [PATCH 06/18] drm: bridge: dw_hdmi: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-07 7:27 ` Neil Armstrong
2023-07-07 7:20 ` [PATCH 07/18] drm/bridge: analogix_dp: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-07 7:27 ` Neil Armstrong
2023-07-07 7:20 ` [PATCH 08/18] gpu: ipu-v3: prg: " Yangtao Li
2023-07-07 8:20 ` Philipp Zabel
2023-07-07 7:20 ` [PATCH 09/18] drm/hisilicon: " Yangtao Li
2023-07-07 7:20 ` [PATCH 10/18] drm: lcdif: " Yangtao Li
2023-07-07 7:20 ` [PATCH 11/18] drm/mxsfb: " Yangtao Li
2023-07-07 7:20 ` [PATCH 12/18] drm/tegra: dpaux: " Yangtao Li
2023-07-07 12:28 ` Thierry Reding [this message]
2023-07-07 7:20 ` [PATCH 13/18] drm/stm: ltdc: " Yangtao Li
2023-07-07 13:37 ` Raphael Gallais-Pou
2023-07-07 7:20 ` [PATCH 14/18] drm/aspeed: " Yangtao Li
2023-07-07 7:20 ` [PATCH 15/18] drm/tegra: sor: " Yangtao Li
2023-07-07 7:20 ` [PATCH 16/18] drm/rockchip: vop: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-07 7:20 ` [PATCH 17/18] drm/arcpgu: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-07 13:24 ` Alexey Brodkin
2023-07-07 7:20 ` [PATCH 18/18] drm/fsl-dcu: " Yangtao Li
2023-07-07 8:33 ` [PATCH 01/18] drm/renesas: " Laurent Pinchart
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=ZKgE407-trIp_7HV@orome \
--to=thierry.reding@gmail.com \
--cc=airlied@gmail.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=frank.li@vivo.com \
--cc=jonathanh@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=mperttunen@nvidia.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox