On Tue, Apr 02, 2019 at 12:01:53PM -0700, Guenter Roeck wrote:
> Use devm_platform_ioremap_resource to reduce source code size,
> improve readability, and reduce the likelyhood of bugs.
>
> The conversion was done automatically with coccinelle using the
> following semantic patch.
>
> @r@
> identifier res, pdev;
> expression a;
> expression index;
> expression e;
> @@
>
> <+...
> - res = platform_get_resource(pdev, IORESOURCE_MEM, index);
> - a = devm_ioremap_resource(e, res);
> + a = devm_platform_ioremap_resource(pdev, index);
> ...+>
>
> @depends on r@
> identifier r.res;
> @@
> - struct resource *res;
>   ... when != res
>
> @@
> identifier res, pdev;
> expression index;
> expression a;
> @@
> - struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, index);
> - a = devm_ioremap_resource(&pdev->dev, res);
> + a = devm_platform_ioremap_resource(pdev, index);
>
> Cc: Joel Stanley <j...@jms.id.au>
> Cc: Nicolas Ferre <nicolas.fe...@microchip.com>
> Cc: Alexandre Belloni <alexandre.bell...@bootlin.com>
> Cc: Florian Fainelli <f.faine...@gmail.com>
> Cc: Linus Walleij <linus.wall...@linaro.org>
> Cc: Baruch Siach <bar...@tkos.co.il>
> Cc: Keguang Zhang <keguang.zh...@gmail.com>
> Cc: Vladimir Zapolskiy <v...@mleia.com>
> Cc: Kevin Hilman <khil...@baylibre.com>
> Cc: Matthias Brugger <matthias....@gmail.com>
> Cc: Avi Fishman <avifishma...@gmail.com>
> Cc: Nancy Yuen <yu...@google.com>
> Cc: Brendan Higgins <brendanhigg...@google.com>
> Cc: Wan ZongShun <mcuos....@gmail.com>
> Cc: Michal Simek <michal.si...@xilinx.com>
> Cc: Sylvain Lemieux <slemieux.t...@gmail.com>
> Cc: Kukjin Kim <kg...@kernel.org>
> Cc: Barry Song <bao...@kernel.org>
> Cc: Orson Zhai <orsonz...@gmail.com>
> Cc: Patrice Chotard <patrice.chot...@st.com>
> Cc: Maxime Coquelin <mcoquelin.st...@gmail.com>
> Cc: Maxime Ripard <maxime.rip...@bootlin.com>

For sunxi_wdt

Acked-by: Maxime Ripard <maxime.rip...@bootlin.com>

Thanks!
Maxime

--
Maxime Ripard, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

Attachment: signature.asc
Description: PGP signature

Reply via email to