Message ID | 20230306144522.15699-1-quic_mdalam@quicinc.com |
---|---|
State | Accepted |
Commit | fdbd69549be8760060952e431ba940112ea623cc |
Headers | show |
Series | [1/5] mtd: nand: raw: qcom_nandc: Use devm_platform_get_and_ioremap_resource() | expand |
On Mon, Mar 06, 2023 at 08:15:22PM +0530, Md Sadre Alam wrote: > Convert platform_get_resource(), devm_ioremap_resource() to a single > call to devm_platform_get_and_ioremap_resource(), as this is exactly > what this function does. > > Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> Loic, Robert, do you agree with this patch?
On Wed, Jun 7, 2023 at 12:34 PM Wolfram Sang <wsa@kernel.org> wrote: > > On Mon, Mar 06, 2023 at 08:15:22PM +0530, Md Sadre Alam wrote: > > Convert platform_get_resource(), devm_ioremap_resource() to a single > > call to devm_platform_get_and_ioremap_resource(), as this is exactly > > what this function does. > > > > Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> > > Loic, Robert, do you agree with this patch? > Acked-by: Robert Foss <rfoss@kernel.org>
On Mon, Mar 06, 2023 at 08:15:22PM +0530, Md Sadre Alam wrote: > Convert platform_get_resource(), devm_ioremap_resource() to a single > call to devm_platform_get_and_ioremap_resource(), as this is exactly > what this function does. > > Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> Applied to for-next, thanks! Also, thanks, Robert.
diff --git a/drivers/i2c/busses/i2c-qcom-cci.c b/drivers/i2c/busses/i2c-qcom-cci.c index 01358472680c..ed70bc1e4926 100644 --- a/drivers/i2c/busses/i2c-qcom-cci.c +++ b/drivers/i2c/busses/i2c-qcom-cci.c @@ -581,8 +581,7 @@ static int cci_probe(struct platform_device *pdev) /* Memory */ - r = platform_get_resource(pdev, IORESOURCE_MEM, 0); - cci->base = devm_ioremap_resource(dev, r); + cci->base = devm_platform_get_and_ioremap_resource(pdev, 0, &r); if (IS_ERR(cci->base)) return PTR_ERR(cci->base);
Convert platform_get_resource(), devm_ioremap_resource() to a single call to devm_platform_get_and_ioremap_resource(), as this is exactly what this function does. Signed-off-by: Md Sadre Alam <quic_mdalam@quicinc.com> --- drivers/i2c/busses/i2c-qcom-cci.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)