From: Ray Jui <ray.jui@broadcom.com>
To: Yangtao Li <frank.li@vivo.com>,
Andi Shyti <andi.shyti@kernel.org>, Ray Jui <rjui@broadcom.com>,
Scott Branden <sbranden@broadcom.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>
Cc: linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 02/11] i2c: iproc: Convert to devm_platform_ioremap_resource()
Date: Wed, 5 Jul 2023 08:54:19 -0700 [thread overview]
Message-ID: <465c03da-6a7f-a863-fcf2-6e3259de92fc@broadcom.com> (raw)
In-Reply-To: <20230705135159.33327-2-frank.li@vivo.com>
[-- Attachment #1: Type: text/plain, Size: 1623 bytes --]
On 7/5/2023 6:51 AM, Yangtao Li wrote:
> Use devm_platform_ioremap_resource() to simplify code.
>
> Signed-off-by: Yangtao Li <frank.li@vivo.com>
> ---
> drivers/i2c/busses/i2c-bcm-iproc.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-bcm-iproc.c b/drivers/i2c/busses/i2c-bcm-iproc.c
> index 2d8342fdc25d..3fac85be543a 100644
> --- a/drivers/i2c/busses/i2c-bcm-iproc.c
> +++ b/drivers/i2c/busses/i2c-bcm-iproc.c
> @@ -1026,7 +1026,6 @@ static int bcm_iproc_i2c_probe(struct platform_device *pdev)
> int irq, ret = 0;
> struct bcm_iproc_i2c_dev *iproc_i2c;
> struct i2c_adapter *adap;
> - struct resource *res;
>
> iproc_i2c = devm_kzalloc(&pdev->dev, sizeof(*iproc_i2c),
> GFP_KERNEL);
> @@ -1039,15 +1038,12 @@ static int bcm_iproc_i2c_probe(struct platform_device *pdev)
> (enum bcm_iproc_i2c_type)of_device_get_match_data(&pdev->dev);
> init_completion(&iproc_i2c->done);
>
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - iproc_i2c->base = devm_ioremap_resource(iproc_i2c->device, res);
> + iproc_i2c->base = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(iproc_i2c->base))
> return PTR_ERR(iproc_i2c->base);
>
> if (iproc_i2c->type == IPROC_I2C_NIC) {
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> - iproc_i2c->idm_base = devm_ioremap_resource(iproc_i2c->device,
> - res);
> + iproc_i2c->idm_base = devm_platform_ioremap_resource(pdev, 1);
> if (IS_ERR(iproc_i2c->idm_base))
> return PTR_ERR(iproc_i2c->idm_base);
>
Acked-by: Ray Jui <ray.jui@broadcom.com>
Thanks.
[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4194 bytes --]
next prev parent reply other threads:[~2023-07-05 15:54 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-05 13:51 [PATCH 01/11] i2c: at91: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-05 13:51 ` [PATCH 02/11] i2c: iproc: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-05 15:54 ` Ray Jui [this message]
2023-07-05 13:51 ` [PATCH 03/11] i2c: brcmstb: " Yangtao Li
2023-07-05 13:51 ` [PATCH 04/11] i2c: mlxbf: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-05 13:51 ` [PATCH 05/11] i2c: stm32f4: " Yangtao Li
2023-07-05 13:51 ` [PATCH 06/11] i2c: qcom-geni: Convert to devm_platform_ioremap_resource() Yangtao Li
2023-07-05 13:51 ` [PATCH 07/11] i2c: st: Use devm_platform_get_and_ioremap_resource() Yangtao Li
2023-07-05 13:51 ` [PATCH 08/11] i2c: sh_mobile: " Yangtao Li
2023-07-05 14:44 ` Geert Uytterhoeven
2023-07-06 19:21 ` Wolfram Sang
2023-07-05 13:51 ` [PATCH 09/11] i2c: s3c2410: " Yangtao Li
2023-07-05 13:51 ` [PATCH 10/11] i2c: pxa: " Yangtao Li
2023-07-05 13:51 ` [PATCH 11/11] i2c: pnx: " Yangtao Li
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=465c03da-6a7f-a863-fcf2-6e3259de92fc@broadcom.com \
--to=ray.jui@broadcom.com \
--cc=andi.shyti@kernel.org \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=frank.li@vivo.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.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
all inboxes | Powered by JetHome®