lkml.org 
[lkml]   [2019]   [Apr]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH 3/3] nvmem: imx-iim: use devm_platform_ioremap_resource() to simplify code
From
Date

On 4/1/2019 10:29 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 <Anson.Huang@nxp.com>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>

Cheers,
-Mukesh

> ---
> drivers/nvmem/imx-iim.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/nvmem/imx-iim.c b/drivers/nvmem/imx-iim.c
> index 6651e4c..3458229 100644
> --- a/drivers/nvmem/imx-iim.c
> +++ b/drivers/nvmem/imx-iim.c
> @@ -104,7 +104,6 @@ static int imx_iim_probe(struct platform_device *pdev)
> {
> const struct of_device_id *of_id;
> struct device *dev = &pdev->dev;
> - struct resource *res;
> struct iim_priv *iim;
> struct nvmem_device *nvmem;
> struct nvmem_config cfg = {};
> @@ -114,8 +113,7 @@ static int imx_iim_probe(struct platform_device *pdev)
> if (!iim)
> return -ENOMEM;
>
> - res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> - iim->base = devm_ioremap_resource(dev, res);
> + iim->base = devm_platform_ioremap_resource(pdev, 0);
> if (IS_ERR(iim->base))
> return PTR_ERR(iim->base);
>

\
 
 \ /
  Last update: 2019-04-01 10:14    [W:0.067 / U:0.156 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site