2019-04-01 05:25:18

by Anson Huang

[permalink] [raw]
Subject: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code

Use the new helper devm_platform_ioremap_resource() which wraps the
platform_get_resource() and devm_ioremap_resource() together, to
simplify the code.

Signed-off-by: Anson Huang <[email protected]>
---
drivers/pwm/pwm-imx27.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
index 8061306..434a351 100644
--- a/drivers/pwm/pwm-imx27.c
+++ b/drivers/pwm/pwm-imx27.c
@@ -291,7 +291,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx27_dt_ids);
static int pwm_imx27_probe(struct platform_device *pdev)
{
struct pwm_imx27_chip *imx;
- struct resource *r;

imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
if (imx == NULL)
@@ -326,8 +325,7 @@ static int pwm_imx27_probe(struct platform_device *pdev)
imx->chip.of_xlate = of_pwm_xlate_with_flags;
imx->chip.of_pwm_n_cells = 3;

- r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
+ imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(imx->mmio_base))
return PTR_ERR(imx->mmio_base);

--
2.7.4


2019-04-01 07:02:02

by Uwe Kleine-König

[permalink] [raw]
Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code

On Mon, Apr 01, 2019 at 05:24:02AM +0000, Anson Huang wrote:
> Use the new helper devm_platform_ioremap_resource() which wraps the
> platform_get_resource() and devm_ioremap_resource() together, to
> simplify the code.
>
> Signed-off-by: Anson Huang <[email protected]>
Acked-by: Uwe Kleine-K?nig <[email protected]>

Thanks
Uwe

--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |

2019-04-01 07:47:36

by Mukesh Ojha

[permalink] [raw]
Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code


On 4/1/2019 10:54 AM, Anson Huang wrote:
> Use the new helper devm_platform_ioremap_resource() which wraps the
> platform_get_resource() and devm_ioremap_resource() together, to
> simplify the code.
>
> Signed-off-by: Anson Huang <[email protected]>
Reviewed-by: Mukesh Ojha <[email protected]>

Cheers,
-Mukesh
> ---
> drivers/pwm/pwm-imx27.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
> index 8061306..434a351 100644
> --- a/drivers/pwm/pwm-imx27.c
> +++ b/drivers/pwm/pwm-imx27.c
> @@ -291,7 +291,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx27_dt_ids);
> static int pwm_imx27_probe(struct platform_device *pdev)
> {
> struct pwm_imx27_chip *imx;
> - struct resource *r;
>
> imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
> if (imx == NULL)
> @@ -326,8 +325,7 @@ static int pwm_imx27_probe(struct platform_device *pdev)
> imx->chip.of_xlate = of_pwm_xlate_with_flags;
> imx->chip.of_pwm_n_cells = 3;
>
> - r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
> + imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(imx->mmio_base))
> return PTR_ERR(imx->mmio_base);
>

2019-04-01 08:01:54

by Mukesh Ojha

[permalink] [raw]
Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code


On 4/1/2019 10:54 AM, Anson Huang wrote:
> Use the new helper devm_platform_ioremap_resource() which wraps the
> platform_get_resource() and devm_ioremap_resource() together, to
> simplify the code.
>
> Signed-off-by: Anson Huang <[email protected]>
Reviewed-by: Mukesh Ojha <[email protected]>

Cheers,
-Mukesh

> ---
> drivers/pwm/pwm-imx27.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
> index 8061306..434a351 100644
> --- a/drivers/pwm/pwm-imx27.c
> +++ b/drivers/pwm/pwm-imx27.c
> @@ -291,7 +291,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx27_dt_ids);
> static int pwm_imx27_probe(struct platform_device *pdev)
> {
> struct pwm_imx27_chip *imx;
> - struct resource *r;
>
> imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
> if (imx == NULL)
> @@ -326,8 +325,7 @@ static int pwm_imx27_probe(struct platform_device *pdev)
> imx->chip.of_xlate = of_pwm_xlate_with_flags;
> imx->chip.of_pwm_n_cells = 3;
>
> - r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
> + imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(imx->mmio_base))
> return PTR_ERR(imx->mmio_base);
>

2019-04-01 08:02:31

by Mukesh Ojha

[permalink] [raw]
Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code


On 4/1/2019 10:54 AM, Anson Huang wrote:
> Use the new helper devm_platform_ioremap_resource() which wraps the
> platform_get_resource() and devm_ioremap_resource() together, to
> simplify the code.
>
> Signed-off-by: Anson Huang <[email protected]>


Reviewed-by: Mukesh Ojha <[email protected]>

Cheers,
-Mukesh

> ---
> drivers/pwm/pwm-imx27.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c
> index 8061306..434a351 100644
> --- a/drivers/pwm/pwm-imx27.c
> +++ b/drivers/pwm/pwm-imx27.c
> @@ -291,7 +291,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx27_dt_ids);
> static int pwm_imx27_probe(struct platform_device *pdev)
> {
> struct pwm_imx27_chip *imx;
> - struct resource *r;
>
> imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
> if (imx == NULL)
> @@ -326,8 +325,7 @@ static int pwm_imx27_probe(struct platform_device *pdev)
> imx->chip.of_xlate = of_pwm_xlate_with_flags;
> imx->chip.of_pwm_n_cells = 3;
>
> - r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
> + imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(imx->mmio_base))
> return PTR_ERR(imx->mmio_base);
>

2019-04-28 06:31:16

by Anson Huang

[permalink] [raw]
Subject: RE: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code

Ping...

> -----Original Message-----
> From: Mukesh Ojha [mailto:[email protected]]
> Sent: Monday, April 1, 2019 4:01 PM
> To: Anson Huang <[email protected]>; [email protected];
> [email protected]; [email protected]; [email protected];
> [email protected]; [email protected]; linux-arm-
> [email protected]; [email protected]
> Cc: dl-linux-imx <[email protected]>
> Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource()
> to simplify code
>
>
> On 4/1/2019 10:54 AM, Anson Huang wrote:
> > Use the new helper devm_platform_ioremap_resource() which wraps the
> > platform_get_resource() and devm_ioremap_resource() together, to
> > simplify the code.
> >
> > Signed-off-by: Anson Huang <[email protected]>
>
>
> Reviewed-by: Mukesh Ojha <[email protected]>
>
> Cheers,
> -Mukesh
>
> > ---
> > drivers/pwm/pwm-imx27.c | 4 +---
> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >
> > diff --git a/drivers/pwm/pwm-imx27.c b/drivers/pwm/pwm-imx27.c index
> > 8061306..434a351 100644
> > --- a/drivers/pwm/pwm-imx27.c
> > +++ b/drivers/pwm/pwm-imx27.c
> > @@ -291,7 +291,6 @@ MODULE_DEVICE_TABLE(of, pwm_imx27_dt_ids);
> > static int pwm_imx27_probe(struct platform_device *pdev)
> > {
> > struct pwm_imx27_chip *imx;
> > - struct resource *r;
> >
> > imx = devm_kzalloc(&pdev->dev, sizeof(*imx), GFP_KERNEL);
> > if (imx == NULL)
> > @@ -326,8 +325,7 @@ static int pwm_imx27_probe(struct
> platform_device *pdev)
> > imx->chip.of_xlate = of_pwm_xlate_with_flags;
> > imx->chip.of_pwm_n_cells = 3;
> >
> > - r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > - imx->mmio_base = devm_ioremap_resource(&pdev->dev, r);
> > + imx->mmio_base = devm_platform_ioremap_resource(pdev, 0);
> > if (IS_ERR(imx->mmio_base))
> > return PTR_ERR(imx->mmio_base);
> >

2019-05-09 14:58:05

by Thierry Reding

[permalink] [raw]
Subject: Re: [PATCH] pwm: imx27: use devm_platform_ioremap_resource() to simplify code

On Mon, Apr 01, 2019 at 05:24:02AM +0000, Anson Huang wrote:
> Use the new helper devm_platform_ioremap_resource() which wraps the
> platform_get_resource() and devm_ioremap_resource() together, to
> simplify the code.
>
> Signed-off-by: Anson Huang <[email protected]>
> ---
> drivers/pwm/pwm-imx27.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)

Applied, thanks.

Thierry


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