2022-09-13 18:31:23

by Lad, Prabhakar

[permalink] [raw]
Subject: [PATCH] i2c: riic: Use devm_platform_ioremap_resource()

From: Lad Prabhakar <[email protected]>

Use the devm_platform_ioremap_resource() helper instead of calling
platform_get_resource() and devm_ioremap_resource() separately.

Signed-off-by: Lad Prabhakar <[email protected]>
---
drivers/i2c/busses/i2c-riic.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-riic.c b/drivers/i2c/busses/i2c-riic.c
index ecba1dfc1278..849848ccb080 100644
--- a/drivers/i2c/busses/i2c-riic.c
+++ b/drivers/i2c/busses/i2c-riic.c
@@ -400,7 +400,6 @@ static int riic_i2c_probe(struct platform_device *pdev)
{
struct riic_dev *riic;
struct i2c_adapter *adap;
- struct resource *res;
struct i2c_timings i2c_t;
struct reset_control *rstc;
int i, ret;
@@ -409,8 +408,7 @@ static int riic_i2c_probe(struct platform_device *pdev)
if (!riic)
return -ENOMEM;

- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- riic->base = devm_ioremap_resource(&pdev->dev, res);
+ riic->base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(riic->base))
return PTR_ERR(riic->base);

--
2.25.1


2022-09-17 19:16:46

by Wolfram Sang

[permalink] [raw]
Subject: Re: [PATCH] i2c: riic: Use devm_platform_ioremap_resource()

On Tue, Sep 13, 2022 at 06:01:21PM +0100, Prabhakar wrote:
> From: Lad Prabhakar <[email protected]>
>
> Use the devm_platform_ioremap_resource() helper instead of calling
> platform_get_resource() and devm_ioremap_resource() separately.
>
> Signed-off-by: Lad Prabhakar <[email protected]>

Applied to for-next, thanks!


Attachments:
(No filename) (378.00 B)
signature.asc (849.00 B)
Download all attachments