YueHaibing <yuehaib...@huawei.com> writes:

> Use devm_platform_ioremap_resource() to simplify the code a bit.
> This is detected by coccinelle.
>
> Signed-off-by: YueHaibing <yuehaib...@huawei.com>

Reviewed-by: Kevin Hilman <khil...@baylibre.com>

> ---
>  drivers/rtc/rtc-meson.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c
> index e08b981..9bd8478 100644
> --- a/drivers/rtc/rtc-meson.c
> +++ b/drivers/rtc/rtc-meson.c
> @@ -292,7 +292,6 @@ static int meson_rtc_probe(struct platform_device *pdev)
>       };
>       struct device *dev = &pdev->dev;
>       struct meson_rtc *rtc;
> -     struct resource *res;
>       void __iomem *base;
>       int ret;
>       u32 tm;
> @@ -312,8 +311,7 @@ static int meson_rtc_probe(struct platform_device *pdev)
>       rtc->rtc->ops = &meson_rtc_ops;
>       rtc->rtc->range_max = U32_MAX;
>  
> -     res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -     base = devm_ioremap_resource(dev, res);
> +     base = devm_platform_ioremap_resource(pdev, 0);
>       if (IS_ERR(base))
>               return PTR_ERR(base);
>  
> -- 
> 2.7.4

Reply via email to