Re: [PATCH 05/15] gpio-sta2x11: Convert to use devm_ioremap_resource

From: Tushar Behera
Date: Mon Jun 17 2013 - 02:13:49 EST


On 06/10/2013 05:05 PM, Tushar Behera wrote:
> Commit 75096579c3ac ("lib: devres: Introduce devm_ioremap_resource()")
> introduced devm_ioremap_resource() and deprecated the use of
> devm_request_and_ioremap().
>
> Signed-off-by: Tushar Behera <tushar.behera@xxxxxxxxxx>
> CC: linux-gpio@xxxxxxxxxxxxxxx
> CC: Grant Likely <grant.likely@xxxxxxxxxx>
> CC: Linus Walleij <linus.walleij@xxxxxxxxxx>
> ---
> drivers/gpio/gpio-sta2x11.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-sta2x11.c b/drivers/gpio/gpio-sta2x11.c
> index 5585425..c977c14 100644
> --- a/drivers/gpio/gpio-sta2x11.c
> +++ b/drivers/gpio/gpio-sta2x11.c
> @@ -372,7 +372,9 @@ static int gsta_probe(struct platform_device *dev)
>
> chip = devm_kzalloc(&dev->dev, sizeof(*chip), GFP_KERNEL);
> chip->dev = &dev->dev;
> - chip->reg_base = devm_request_and_ioremap(&dev->dev, res);
> + chip->reg_base = devm_ioremap_resource(&dev->dev, res);
> + if (IS_ERR(chip->reg_base))
> + return PTR_ERR(chip->reg_base);
>
> for (i = 0; i < GSTA_NR_BLOCKS; i++) {
> chip->regs[i] = chip->reg_base + i * 4096;
>

Ping.

--
Tushar Behera
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/