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.beh...@linaro.org>
> CC: linux-g...@vger.kernel.org
> CC: Grant Likely <grant.lik...@linaro.org>
> CC: Linus Walleij <linus.wall...@linaro.org>
> ---
>  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 majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to